UNPKG

441 BTypeScriptView Raw
1import { PatchDetail } from "../patch/patch-detail";
2import { InstallerOptions } from "../options";
3interface CheckResult {
4 [moduleName: string]: PatchDetail | undefined;
5}
6/**
7 * Check if files can be patched
8 */
9export declare function check(moduleName?: string | string[], opts?: Partial<InstallerOptions>): CheckResult;
10export declare function check(moduleNames?: string[], opts?: Partial<InstallerOptions>): CheckResult;
11export {};