/** * Push a watcher into the watcher queue. * Jobs with duplicate IDs will be skipped unless it's * pushed when the queue is being flushed. */ import Watcher from "./watcher"; export declare const MAX_UPDATE_COUNT = 100; export declare let currentFlushTimestamp: number; interface Component { [x: string]: any; } export declare function activateChildComponent(vm: Component, direct?: boolean): void; export declare function queueWatcher(watcher: Watcher): void; export declare function callHook(vm: any, hook: string): void; export {};