Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
750 B
Plaintext
15 lines
750 B
Plaintext
/**
|
|
* 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 |