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
21
node_modules/@opentelemetry/api/build/esm/trace/tracer_provider.d.ts
generated
vendored
Normal file
21
node_modules/@opentelemetry/api/build/esm/trace/tracer_provider.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
import { Tracer } from './tracer';
|
||||
import { TracerOptions } from './tracer_options';
|
||||
/**
|
||||
* A registry for creating named {@link Tracer}s.
|
||||
*/
|
||||
export interface TracerProvider {
|
||||
/**
|
||||
* Returns a Tracer, creating one if one with the given name and version is
|
||||
* not already created.
|
||||
*
|
||||
* This function may return different Tracer types (e.g.
|
||||
* {@link NoopTracerProvider} vs. a functional tracer).
|
||||
*
|
||||
* @param name The name of the tracer or instrumentation library.
|
||||
* @param version The version of the tracer or instrumentation library.
|
||||
* @param options The options of the tracer or instrumentation library.
|
||||
* @returns Tracer A Tracer with the given name and version
|
||||
*/
|
||||
getTracer(name: string, version?: string, options?: TracerOptions): Tracer;
|
||||
}
|
||||
//# sourceMappingURL=tracer_provider.d.ts.map
|
Loading…
Add table
Add a link
Reference in a new issue