michangarrito/apps/backend/node_modules/fork-ts-checker-webpack-plugin/lib/files-change.d.ts
rckrdmrd 97f407c661 [MIGRATION-V2] feat: Migrar michangarrito a estructura v2
- Prefijo v2: MCH
- TRACEABILITY-MASTER.yml creado
- Listo para integracion como submodulo

Workspace: v2.0.0 | SIMCO: v4.0.0
2026-01-10 11:28:54 -06:00

18 lines
851 B
TypeScript

import type * as webpack from 'webpack';
interface FilesChange {
changedFiles?: string[];
deletedFiles?: string[];
}
declare function getFilesChange(compiler: webpack.Compiler): FilesChange;
declare function consumeFilesChange(compiler: webpack.Compiler): FilesChange;
declare function updateFilesChange(compiler: webpack.Compiler, change: FilesChange): void;
declare function clearFilesChange(compiler: webpack.Compiler): void;
/**
* Computes aggregated files change based on the subsequent files changes.
*
* @param changes List of subsequent files changes
* @returns Files change that represents all subsequent changes as a one event
*/
declare function aggregateFilesChanges(changes: FilesChange[]): FilesChange;
export { FilesChange, getFilesChange, consumeFilesChange, updateFilesChange, clearFilesChange, aggregateFilesChanges, };