export type EventType = string;
/**
 * @readonly
 * @enum {string}
 */
export const EventType: Readonly<{
    INIT: "init";
    MESSAGE: "message";
    ERROR: "error";
    CLOSED: "close";
}>;
