UNPKG

373 BTypeScriptView Raw
1export declare enum TARGET {
2 CONSOLE = "CONSOLE",
3 ZIPKIN = "ZIPKIN",
4 TELEMETRY = "TELEMETRY"
5}
6export declare type SpanId = string;
7export declare const traceGlobals: Map<any, any>;
8export declare const setGlobal: (key: any, val: any) => void;
9export declare const debugLog: {
10 (...data: any[]): void;
11 (message?: any, ...optionalParams: any[]): void;
12};