UNPKG

@tempfix/watcher

Version:

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

9 lines (8 loc) 275 B
import type { Callback } from './types.js'; declare const isFunction: (value: unknown) => value is Function; declare const makeCounterPromise: () => { promise: Promise<void>; increment: Callback; decrement: Callback; }; export { isFunction, makeCounterPromise };