UNPKG

@segment/analytics-next

Version:

Analytics Next (aka Analytics 2.0) is the latest version of Segment’s JavaScript SDK - enabling you to send your data to any tool without having to learn, test, or use a new API every time.

37 lines (31 loc) 579 B
import { CoreOptions, CoreSegmentEvent, Callback, Integrations, Plan, TrackPlan, PlanEvent, JSONArray, JSONValue, JSONPrimitive, JSONObject, GroupTraits, UserTraits, Traits, } from '@segment/analytics-core' export interface Options extends CoreOptions {} export type { GroupTraits, UserTraits, Traits } export type EventProperties = Record<string, any> export interface SegmentEvent extends CoreSegmentEvent {} export type { Integrations, Plan, TrackPlan, PlanEvent, Callback, JSONArray, JSONValue, JSONPrimitive, JSONObject, }