UNPKG

183 BTypeScriptView Raw
1export declare module Event {
2 interface IEventSubscription {
3 subscriptionId: string;
4 eventName: string;
5 callback: (...args: any[]) => void;
6 }
7}