fork-ts-checker-webpack-plugin
Version:
Runs typescript type checker and linter on separate process.
10 lines (9 loc) • 377 B
TypeScript
import { FileSystem } from './FileSystem';
/**
* It's an implementation of FileSystem interface which reads from the real file system, but write to the in-memory file system.
*
* @param memFileSystem
* @param realFileSystem
*/
declare function createPassiveFileSystem(memFileSystem: FileSystem, realFileSystem: FileSystem): FileSystem;
export { createPassiveFileSystem };