UNPKG

miniorm

Version:

A lightweight, minimal TypeScript ORM & query‑builder for MySQL, PostgreSQL and SQLite

8 lines (7 loc) 295 B
export declare class EventManager { private static events; static on(event: string, func: (...args: any[]) => any): void; static once(event: string, func: (...args: any[]) => any): void; static emit(event: string, ...args: any[]): void; static clear(event?: string): void; }