mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-18 20:48:29 +02:00
feat: add @actions/cache
This commit is contained in:
parent
b15fb7d098
commit
16e8c96a41
1932 changed files with 261172 additions and 10 deletions
37
node_modules/@opentelemetry/api/build/src/trace/context-utils.d.ts
generated
vendored
Normal file
37
node_modules/@opentelemetry/api/build/src/trace/context-utils.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
import { Context } from '../context/types';
|
||||
import { Span } from './span';
|
||||
import { SpanContext } from './span_context';
|
||||
/**
|
||||
* Return the span if one exists
|
||||
*
|
||||
* @param context context to get span from
|
||||
*/
|
||||
export declare function getSpan(context: Context): Span | undefined;
|
||||
/**
|
||||
* Set the span on a context
|
||||
*
|
||||
* @param context context to use as parent
|
||||
* @param span span to set active
|
||||
*/
|
||||
export declare function setSpan(context: Context, span: Span): Context;
|
||||
/**
|
||||
* Remove current span stored in the context
|
||||
*
|
||||
* @param context context to delete span from
|
||||
*/
|
||||
export declare function deleteSpan(context: Context): Context;
|
||||
/**
|
||||
* Wrap span context in a NoopSpan and set as span in a new
|
||||
* context
|
||||
*
|
||||
* @param context context to set active span on
|
||||
* @param spanContext span context to be wrapped
|
||||
*/
|
||||
export declare function setSpanContext(context: Context, spanContext: SpanContext): Context;
|
||||
/**
|
||||
* Get the span context of the span if it exists.
|
||||
*
|
||||
* @param context context to get values from
|
||||
*/
|
||||
export declare function getSpanContext(context: Context): SpanContext | undefined;
|
||||
//# sourceMappingURL=context-utils.d.ts.map
|
Loading…
Add table
Add a link
Reference in a new issue