Slash-The-Hordes/assets/Scripts/Services/EventSystem/ISignal.ts
2022-11-14 16:35:47 +01:00

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;
}