export interface EventObject { type: string; } export interface Handle { destroy(): void; } export interface Hash { [ key: string ]: T; }