mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const FvmConfig = z.object({
|
|
flutterSdkVersion: z.string().optional(),
|
|
flutter: z.string().optional(),
|
|
});
|
|
export type FvmConfig = z.infer<typeof FvmConfig>;
|