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