Slash-The-Hordes/assets/Scripts/Services/EventSystem/ISignal.ts

5 lines
131 B
TypeScript
Raw Normal View History

export interface ISignal<T> {
2022-11-08 18:45:57 +00:00
on(handler: (data: T) => void, thisArg: any): void;
off(handler: (data: T) => void): void;
}