renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
13 lines (12 loc) • 407 B
TypeScript
import { z } from 'zod';
export declare const FvmConfig: z.ZodObject<{
flutterSdkVersion: z.ZodOptional<z.ZodString>;
flutter: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
flutter?: string | undefined;
flutterSdkVersion?: string | undefined;
}, {
flutter?: string | undefined;
flutterSdkVersion?: string | undefined;
}>;
export type FvmConfig = z.infer<typeof FvmConfig>;