Files
2026-09-16 23:20:08 +07:00

8 lines
225 B
TypeScript

declare class Events {
private _eventType;
private _eventFunctions;
constructor(eventType: string, eventFunctions?: EventListener[]);
init(): void;
}
export default Events;
//# sourceMappingURL=events.d.ts.map