UNPKG

ajsfw

Version:
7 lines (6 loc) 214 B
import { IListener } from "./IListener"; export interface INotifier<T> { subscribe(listener: IListener<T>): void; unsubscribe(listener: IListener<T>): void; notify(sender: any, data?: T): void; }