mirror of
https://github.com/MartinKral/Slash-The-Hordes
synced 2025-01-09 12:33:06 +00:00
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
export interface ISignal<T> {
|
|
on(handler: (data: T) => void, thisArg: any): void;
|
|
off(handler: (data: T) => void): void;
|
|
}
|