added factorial module

This commit is contained in:
szabomarton
2024-10-22 13:12:20 +02:00
parent 7f2ddb3a86
commit e12780f413
2836 changed files with 207364 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export declare class TinyEmitter {
on(event: string, callback: Function, ctx?: any): this;
once(event: string, callback: Function, ctx?: any): this;
emit(event: string, ...args: any[]): this;
off(event: string, callback?: Function): this;
}