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
16 lines
710 B
Plaintext
16 lines
710 B
Plaintext
import { Baggage, BaggageEntryMetadata } from '@opentelemetry/api';
|
|
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 |