mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-19 13:08:27 +02:00
feat: add @actions/cache
This commit is contained in:
parent
b15fb7d098
commit
16e8c96a41
1932 changed files with 261172 additions and 10 deletions
14
node_modules/@opentelemetry/api/build/esm/trace/NoopTracer.d.ts
generated
vendored
Normal file
14
node_modules/@opentelemetry/api/build/esm/trace/NoopTracer.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
import { Context } from '../context/types';
|
||||
import { Span } from './span';
|
||||
import { SpanOptions } from './SpanOptions';
|
||||
import { Tracer } from './tracer';
|
||||
/**
|
||||
* No-op implementations of {@link Tracer}.
|
||||
*/
|
||||
export declare class NoopTracer implements Tracer {
|
||||
startSpan(name: string, options?: SpanOptions, context?: Context): Span;
|
||||
startActiveSpan<F extends (span: Span) => ReturnType<F>>(name: string, fn: F): ReturnType<F>;
|
||||
startActiveSpan<F extends (span: Span) => ReturnType<F>>(name: string, opts: SpanOptions | undefined, fn: F): ReturnType<F>;
|
||||
startActiveSpan<F extends (span: Span) => ReturnType<F>>(name: string, opts: SpanOptions | undefined, ctx: Context | undefined, fn: F): ReturnType<F>;
|
||||
}
|
||||
//# sourceMappingURL=NoopTracer.d.ts.map
|
Loading…
Add table
Add a link
Reference in a new issue