Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
No EOL
562 B
Text
25 lines
No EOL
562 B
Text
export interface SpanStatus {
|
|
/** The status code of this message. */
|
|
code: SpanStatusCode;
|
|
/** A developer-facing error message. */
|
|
message?: string;
|
|
}
|
|
/**
|
|
* An enumeration of status codes.
|
|
*/
|
|
export declare enum SpanStatusCode {
|
|
/**
|
|
* The default status.
|
|
*/
|
|
UNSET = 0,
|
|
/**
|
|
* The operation has been validated by an Application developer or
|
|
* Operator to have completed successfully.
|
|
*/
|
|
OK = 1,
|
|
/**
|
|
* The operation contains an error.
|
|
*/
|
|
ERROR = 2
|
|
}
|
|
//# sourceMappingURL=status.d.ts.map |