UNPKG

@iredium/butterfly

Version:
7 lines (6 loc) 227 B
import { EventInterface } from './event_interface'; export declare abstract class Event implements EventInterface { abstract name: string; static on(name: string, handler: any): void; static emit(e: Event): void; }