UNPKG

arvo-core

Version:

The core Arvo package which provides application tier core primitives and contract system for building production-grade event-driven application. Provides ArvoEvent (CloudEvents-compliant), ArvoContract for type-safe service interfaces, event factories, O

12 lines (11 loc) 417 B
import { SpanKind } from '@opentelemetry/api'; import type { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract'; export declare const createSpanOptions: (contract: VersionedArvoContract<any, any>) => { kind: SpanKind; attributes: { "arvo.span.kind": string; "openinference.span.kind": string; 'arvo.contract.uri': any; 'arvo.contract.version': any; }; };