{"version":3,"file":"SpanOptions.js","sourceRoot":"","sources":["../../../src/trace/SpanOptions.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*\n * Copyright The OpenTelemetry Authors\n * SPDX-License-Identifier: Apache-2.0\n */\n\nimport type { Attributes } from '../common/Attributes';\nimport type { TimeInput } from '../common/Time';\nimport type { Link } from './link';\nimport type { SpanKind } from './span_kind';\n\n/**\n * Options needed for span creation\n *\n * @since 1.0.0\n */\nexport interface SpanOptions {\n  /**\n   * The SpanKind of a span\n   * @default {@link SpanKind.INTERNAL}\n   */\n  kind?: SpanKind;\n\n  /** A span's attributes */\n  attributes?: Attributes;\n\n  /** {@link Link}s span to other spans */\n  links?: Link[];\n\n  /** A manually specified start time for the created `Span` object. */\n  startTime?: TimeInput;\n\n  /** The new span should be a root span. (Ignore parent from context). */\n  root?: boolean;\n}\n"]}