UNPKG

@segment/analytics-node

Version:

https://www.npmjs.com/package/@segment/analytics-node

8 lines (5 loc) 225 B
import type { CoreSegmentEvent } from '@segment/analytics-core' type SegmentEventType = 'track' | 'page' | 'identify' | 'alias' | 'screen' export interface SegmentEvent extends CoreSegmentEvent { type: SegmentEventType }