mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-19 21:18:22 +02:00
feat: add @actions/cache
This commit is contained in:
parent
b15fb7d098
commit
16e8c96a41
1932 changed files with 261172 additions and 10 deletions
38
node_modules/@opentelemetry/api/build/esm/trace/trace_state.d.ts
generated
vendored
Normal file
38
node_modules/@opentelemetry/api/build/esm/trace/trace_state.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
export interface TraceState {
|
||||
/**
|
||||
* Create a new TraceState which inherits from this TraceState and has the
|
||||
* given key set.
|
||||
* The new entry will always be added in the front of the list of states.
|
||||
*
|
||||
* @param key key of the TraceState entry.
|
||||
* @param value value of the TraceState entry.
|
||||
*/
|
||||
set(key: string, value: string): TraceState;
|
||||
/**
|
||||
* Return a new TraceState which inherits from this TraceState but does not
|
||||
* contain the given key.
|
||||
*
|
||||
* @param key the key for the TraceState entry to be removed.
|
||||
*/
|
||||
unset(key: string): TraceState;
|
||||
/**
|
||||
* Returns the value to which the specified key is mapped, or `undefined` if
|
||||
* this map contains no mapping for the key.
|
||||
*
|
||||
* @param key with which the specified value is to be associated.
|
||||
* @returns the value to which the specified key is mapped, or `undefined` if
|
||||
* this map contains no mapping for the key.
|
||||
*/
|
||||
get(key: string): string | undefined;
|
||||
/**
|
||||
* Serializes the TraceState to a `list` as defined below. The `list` is a
|
||||
* series of `list-members` separated by commas `,`, and a list-member is a
|
||||
* key/value pair separated by an equals sign `=`. Spaces and horizontal tabs
|
||||
* surrounding `list-members` are ignored. There can be a maximum of 32
|
||||
* `list-members` in a `list`.
|
||||
*
|
||||
* @returns the serialized string.
|
||||
*/
|
||||
serialize(): string;
|
||||
}
|
||||
//# sourceMappingURL=trace_state.d.ts.map
|
Loading…
Add table
Add a link
Reference in a new issue