UNPKG

ts-patch

Version:

Patch typescript to support custom transformers in tsconfig.json

11 lines (10 loc) 337 B
import { PatchDetail } from '../patch/patch-detail'; export interface ModuleFile { moduleName: string; patchDetail?: PatchDetail; filePath: string; contentFilePath: string; get content(): string; getHash(): string; } export declare function getModuleFile(filePath: string, loadFullContent?: boolean): ModuleFile;