export interface TigaEventInit extends EventInit { detail?: T; other?: object; } export declare class TiGaEvent extends Event { detail: T; other: object; constructor(typeArg: string, eventInitDict?: TigaEventInit); }