export interface ISignal { on(handler: (data: T) => void): void; off(handler: (data: T) => void): void; }