UNPKG

activity-calendar

Version:

a simple activity calendar

7 lines (6 loc) 221 B
import Event, { EventCallback } from "./Event"; interface IListenable { trigger(event: string | Event, ...any: any[]): any; on(type: string | string[], callback: EventCallback): any; } export default IListenable;