next
Version:
The React Framework
13 lines (12 loc) • 373 B
TypeScript
export declare enum TARGET {
CONSOLE = "CONSOLE",
ZIPKIN = "ZIPKIN",
TELEMETRY = "TELEMETRY"
}
export declare type SpanId = string;
export declare const traceGlobals: Map<any, any>;
export declare const setGlobal: (key: any, val: any) => void;
export declare const debugLog: {
(...data: any[]): void;
(message?: any, ...optionalParams: any[]): void;
};