UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

8 lines 352 B
export interface FileChangeEvent { createdFiles: string[]; updatedFiles: string[]; deletedFiles: string[]; } export declare function registerFileChangeListener(listener: (event: FileChangeEvent) => void): void; export declare function notifyFileChangeListeners(event: FileChangeEvent): void; //# sourceMappingURL=file-change-events.d.ts.map