import { EventEmitter } from '../common'; export declare let getEventBus: () => EventEmitter; export declare let invokeCommand: (name: string, args?: any) => void; export interface InitializeData { getEventBus: typeof getEventBus; invokeCommand: typeof invokeCommand; } /** * 全局变量初始化 * * @internal */ export declare function initialize(data: Partial): void; //# sourceMappingURL=event.d.ts.map