UNPKG

fork-ts-checker-webpack-plugin

Version:
10 lines (9 loc) 377 B
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 };