UNPKG

254 BTypeScriptView Raw
1export declare class Trace {
2 traceId: string;
3 spanId: string;
4 parentSpanId: string;
5 protected static _generateId(): string;
6 constructor(traceId?: string, spanId?: string, parentSpanId?: string);
7 span(): void;
8 toJSON(): any;
9}