UNPKG

112 BTypeScriptView Raw
1export interface WatchHandle {
2 initialized: Promise<void>;
3 done: Promise<void>;
4 stop: () => void;
5}