1 | import { Baggage, BaggageEntryMetadata } from '@opentelemetry/api';
|
2 | declare type ParsedBaggageKeyValue = {
|
3 | key: string;
|
4 | value: string;
|
5 | metadata: BaggageEntryMetadata | undefined;
|
6 | };
|
7 | export declare function serializeKeyPairs(keyPairs: string[]): string;
|
8 | export declare function getKeyPairs(baggage: Baggage): string[];
|
9 | export declare function parsePairKeyValue(entry: string): ParsedBaggageKeyValue | undefined;
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | export declare function parseKeyPairsIntoRecord(value?: string): Record<string, string>;
|
15 | export {};
|
16 |
|
\ | No newline at end of file |