UNPKG

186 BTypeScriptView Raw
1import { Event } from './Event';
2export interface SelfDestructingCallbackInterface extends Function {
3 (event: Event<any>): Promise<void>;
4 _isSelfDestructingCallback?: boolean;
5}