ts-patch
Version:
Patch typescript to support custom transformers in tsconfig.json
12 lines (11 loc) • 441 B
TypeScript
import { PatchDetail } from "../patch/patch-detail";
import { InstallerOptions } from "../options";
interface CheckResult {
[moduleName: string]: PatchDetail | undefined;
}
/**
* Check if files can be patched
*/
export declare function check(moduleName?: string | string[], opts?: Partial<InstallerOptions>): CheckResult;
export declare function check(moduleNames?: string[], opts?: Partial<InstallerOptions>): CheckResult;
export {};