//#region src/tracer/ids.d.ts /** * Trace and span ID generators. The tracer prefers `crypto.randomUUID()` * over a custom RNG for parity with the OpenTelemetry SDK behaviour and * to avoid pulling another runtime dependency. * * @packageDocumentation */ /** * Generate a 32-hex-character (16-byte) trace id. * * @stable */ declare function newTraceId(): string; /** * Generate a 16-hex-character (8-byte) span id. * * @stable */ declare function newSpanId(): string; //#endregion export { newSpanId, newTraceId }; //# sourceMappingURL=ids.d.ts.map