Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
No EOL
484 B
Text
15 lines
No EOL
484 B
Text
import { HrTime, SpanAttributes } from '@opentelemetry/api';
|
|
/**
|
|
* Represents a timed event.
|
|
* A timed event is an event with a timestamp.
|
|
*/
|
|
export interface TimedEvent {
|
|
time: HrTime;
|
|
/** The name of the event. */
|
|
name: string;
|
|
/** The attributes of the event. */
|
|
attributes?: SpanAttributes;
|
|
/** Count of attributes of the event that were dropped due to collection limits */
|
|
droppedAttributesCount?: number;
|
|
}
|
|
//# sourceMappingURL=TimedEvent.d.ts.map |