UNPKG

360 BTypeScriptView Raw
1import { HrTime, SpanAttributes } from '@opentelemetry/api';
2/**
3 * Represents a timed event.
4 * A timed event is an event with a timestamp.
5 */
6export interface TimedEvent {
7 time: HrTime;
8 /** The name of the event. */
9 name: string;
10 /** The attributes of the event. */
11 attributes?: SpanAttributes;
12}
13//# sourceMappingURL=TimedEvent.d.ts.map
\No newline at end of file