mirror of
https://github.com/MartinKral/Slash-The-Hordes
synced 2025-01-08 12:03:11 +00:00
6 lines
187 B
TypeScript
6 lines
187 B
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
export interface ISignal<T> {
|
|
on(handler: (data: T) => void, thisArg: any): void;
|
|
off(handler: (data: T) => void): void;
|
|
}
|