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>
16 lines
No EOL
718 B
Text
16 lines
No EOL
718 B
Text
import { Baggage, BaggageEntryMetadata } from '@opentelemetry/api';
|
|
declare type ParsedBaggageKeyValue = {
|
|
key: string;
|
|
value: string;
|
|
metadata: BaggageEntryMetadata | undefined;
|
|
};
|
|
export declare function serializeKeyPairs(keyPairs: string[]): string;
|
|
export declare function getKeyPairs(baggage: Baggage): string[];
|
|
export declare function parsePairKeyValue(entry: string): ParsedBaggageKeyValue | undefined;
|
|
/**
|
|
* Parse a string serialized in the baggage HTTP Format (without metadata):
|
|
* https://github.com/w3c/baggage/blob/master/baggage/HTTP_HEADER_FORMAT.md
|
|
*/
|
|
export declare function parseKeyPairsIntoRecord(value?: string): Record<string, string>;
|
|
export {};
|
|
//# sourceMappingURL=utils.d.ts.map |