mirror of
https://github.com/soconnor0919/beenpad.git
synced 2026-02-05 08:16:37 -05:00
19 lines
337 B
TypeScript
19 lines
337 B
TypeScript
interface OTELCarrier {
|
|
traceparent?: string;
|
|
tracestate?: string;
|
|
}
|
|
interface TracesOptions {
|
|
enabled: boolean;
|
|
watchMode?: boolean;
|
|
sdkPath?: string;
|
|
tracerName?: string;
|
|
}
|
|
declare class Traces {
|
|
#private;
|
|
constructor(options: TracesOptions);
|
|
isEnabled(): boolean;
|
|
}
|
|
|
|
export { Traces as T };
|
|
export type { OTELCarrier as O };
|