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
23
node_modules/@opentelemetry/api/build/esm/trace/SpanOptions.d.ts
generated
vendored
Normal file
23
node_modules/@opentelemetry/api/build/esm/trace/SpanOptions.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { TimeInput } from '../common/Time';
|
||||
import { SpanAttributes } from './attributes';
|
||||
import { Link } from './link';
|
||||
import { SpanKind } from './span_kind';
|
||||
/**
|
||||
* Options needed for span creation
|
||||
*/
|
||||
export interface SpanOptions {
|
||||
/**
|
||||
* The SpanKind of a span
|
||||
* @default {@link SpanKind.INTERNAL}
|
||||
*/
|
||||
kind?: SpanKind;
|
||||
/** A span's attributes */
|
||||
attributes?: SpanAttributes;
|
||||
/** {@link Link}s span to other spans */
|
||||
links?: Link[];
|
||||
/** A manually specified start time for the created `Span` object. */
|
||||
startTime?: TimeInput;
|
||||
/** The new span should be a root span. (Ignore parent from context). */
|
||||
root?: boolean;
|
||||
}
|
||||
//# sourceMappingURL=SpanOptions.d.ts.map
|
Loading…
Add table
Add a link
Reference in a new issue