turbowatch
Version:
Extremely fast file change detector and task orchestrator for Node.js.
11 lines • 449 B
TypeScript
/// <reference types="node" />
import { type Debounce, type FileChangeEvent, type Subscription } from './types';
export declare const createFileChangeQueue: ({ project, abortSignal, userDebounce, subscriptions, }: {
abortSignal: AbortSignal;
project: string;
subscriptions: Subscription[];
userDebounce: Debounce;
}) => {
trigger: (fileChangeEvent: FileChangeEvent) => void;
};
//# sourceMappingURL=createFileChangeQueue.d.ts.map