i think cron works

This commit is contained in:
Jacob Nguyen
2024-05-15 16:42:21 -05:00
parent 0d82658fc5
commit d905f08993
10 changed files with 49 additions and 14 deletions

View File

@@ -22,7 +22,6 @@ export interface Emitter {
addListener(eventName: string | symbol, listener: AnyFunction): this;
removeListener(eventName: string | symbol, listener: AnyFunction): this;
emit(eventName: string | symbol, ...payload: any[]): boolean;
on(eventName: string | symbol, listener: AnyFunction): this
}