UNPKG

291 BTypeScriptView Raw
1interface Traceparent {
2 version: string;
3 trace_id: string;
4 parent_id: string;
5 flags: string;
6 child(): Traceparent;
7 toString(): string;
8}
9declare const make: () => Traceparent;
10declare const parse: (value: string) => Traceparent;
11
12export { Traceparent, make, parse };