You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
638 B
19 lines
638 B
import { EnvironmentInfo, HealthCheckCategoryResult, Loader } from '../types';
|
|
export declare enum AUTOMATIC_FIX_LEVELS {
|
|
ALL_ISSUES = "ALL_ISSUES",
|
|
ERRORS = "ERRORS",
|
|
WARNINGS = "WARNINGS"
|
|
}
|
|
interface RunAutomaticFixArgs {
|
|
healthchecks: HealthCheckCategoryResult[];
|
|
automaticFixLevel: AUTOMATIC_FIX_LEVELS;
|
|
stats: {
|
|
errors: number;
|
|
warnings: number;
|
|
};
|
|
loader: Loader;
|
|
environmentInfo: EnvironmentInfo;
|
|
}
|
|
export default function ({ healthchecks, automaticFixLevel, stats, environmentInfo, }: RunAutomaticFixArgs): Promise<void>;
|
|
export {};
|
|
//# sourceMappingURL=runAutomaticFix.d.ts.map
|