UNPKG

@upstart.gg/sdk

Version:

You can test the CLI without recompiling by running:

14 lines (11 loc) 257 B
type EventType = "click" | "submit" | "custom"; export type BeaconPayload = { e: EventType; // event type t: number; // timestamp d?: Record<string, unknown>; // data }; declare global { interface Window { upstartQueue: BeaconPayload[]; } }