mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-20 13:38:28 +02:00
feat: add @actions/cache
This commit is contained in:
parent
b15fb7d098
commit
16e8c96a41
1932 changed files with 261172 additions and 10 deletions
22
node_modules/@opentelemetry/api/build/esm/trace/internal/tracestate-impl.d.ts
generated
vendored
Normal file
22
node_modules/@opentelemetry/api/build/esm/trace/internal/tracestate-impl.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
import { 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
|
Loading…
Add table
Add a link
Reference in a new issue