mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
7 lines
195 B
TypeScript
7 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>;
|