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>
15 lines
No EOL
750 B
Text
15 lines
No EOL
750 B
Text
/**
|
|
* Key is opaque string up to 256 characters printable. It MUST begin with a
|
|
* lowercase letter, and can only contain lowercase letters a-z, digits 0-9,
|
|
* underscores _, dashes -, asterisks *, and forward slashes /.
|
|
* For multi-tenant vendor scenarios, an at sign (@) can be used to prefix the
|
|
* vendor name. Vendors SHOULD set the tenant ID at the beginning of the key.
|
|
* see https://www.w3.org/TR/trace-context/#key
|
|
*/
|
|
export declare function validateKey(key: string): boolean;
|
|
/**
|
|
* Value is opaque string up to 256 characters printable ASCII RFC0020
|
|
* characters (i.e., the range 0x20 to 0x7E) except comma , and =.
|
|
*/
|
|
export declare function validateValue(value: string): boolean;
|
|
//# sourceMappingURL=tracestate-validators.d.ts.map |