Files
privacy.sexy/src/infrastructure/Events/ISignal.ts
undergroundwires 4e7f244190 Initial commit
2019-12-31 16:23:45 +01:00

5 lines
117 B
TypeScript

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