fix type errors on automigrate check step

This commit is contained in:
Yann Braga 2023-02-20 15:22:57 +01:00
parent 90b88da8d2
commit 6402ced34a

View File

@ -3,7 +3,7 @@ import type { JsPackageManager } from '../js-package-manager';
export interface CheckOptions {
packageManager: JsPackageManager;
rendererPackage?: string;
configDir: string;
configDir?: string;
}
export interface RunOptions<ResultType> {