UNPKG

webpack-mock-server

Version:

Mocks api requests for webpack-dev-server with hot-replacement

10 lines (9 loc) 299 B
export type OutputMockFile = { path: string; rootName: string; }; export default class CompilerOutRootFiles { files: OutputMockFile[]; /** Returns true if list of rootNames is changed */ update(rootNames: readonly string[] | undefined, inDir: string, outDir: string): boolean; }