installed-check-core
Version:
Checks that all dependencies in your package.json have supported versions installed
16 lines • 785 B
TypeScript
export function installedCheck(checks: import("./perform-installed-check.js").InstalledChecks[], lookupOptions?: LookupOptions | undefined, { fix, ...options }?: (import("./perform-installed-check.js").InstalledCheckOptions & {
fix?: boolean;
}) | undefined): Promise<InstalledCheckResult>;
export const ROOT: unique symbol;
export type WorkspaceSuccess = {
[workspace: string]: boolean;
[ROOT]?: boolean;
};
export type InstalledCheckResult = Omit<import("./perform-installed-check.js").PerformInstalledCheckResult, "fixes"> & {
fixFailures?: string[];
workspaceSuccess: WorkspaceSuccess;
};
export type LookupOptions = Omit<import("list-installed").WorkspaceLookupOptions, "path"> & {
cwd?: string | undefined;
};
//# sourceMappingURL=installed-check.d.ts.map