UNPKG

watcher

Version:

The file system watcher that strives for perfection, with no native dependencies and optional rename detection support.

13 lines (12 loc) 363 B
/// <reference types="node" /> declare const WatcherLocksResolver: { interval: number; intervalId: NodeJS.Timeout | undefined; fns: Map<Function, number>; init: () => void; reset: () => void; add: (fn: Function, timeout: number) => void; remove: (fn: Function) => void; resolve: () => void; }; export default WatcherLocksResolver;