/opt/canhelp/node_modules/@opentelemetry/api/build/src/trace/internal
NameSizeModeActions
tracestate-impl.d.ts8230644editdlrm
tracestate-impl.js36270644editdlrm
tracestate-impl.js.map61290644editdlrm
tracestate-validators.d.ts7500644editdlrm
tracestate-validators.js15060644editdlrm
tracestate-validators.js.map20780644editdlrm
utils.d.ts1870644editdlrm
utils.js4640644editdlrm
utils.js.map6230644editdlrm
Edit: /opt/canhelp/node_modules/@opentelemetry/api/build/src/trace/internal/tracestate-impl.d.ts (823B)
import type { TraceState } from '../trace_state'; /** * TraceState must be a class and not a simple object type because of the spec * requirement (https://www.w3.org/TR/trace-context/#tracestate-field). * * Here is the list of allowed mutations: * - New key-value pair should be added into the beginning of the list * - The value of any key can be updated. Modified keys MUST be moved to the * beginning of the list. */ export declare class TraceStateImpl implements TraceState { private _internalState; constructor(rawTraceState?: string); set(key: string, value: string): TraceStateImpl; unset(key: string): TraceStateImpl; get(key: string): string | undefined; serialize(): string; private _parse; private _keys; private _clone; } //# sourceMappingURL=tracestate-impl.d.ts.map