UNPKG

@botonic/core

Version:
14 lines (13 loc) 275 B
export declare enum EventTypes { CONNECTION = "connection", MESSAGE = "message", ACK = "ack", TRACK = "track" } export interface BaseEvent { eventId: string; userId: string; eventType: EventTypes; createdAt: string; modifiedAt?: string; }