renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
82 lines (81 loc) • 2.87 kB
TypeScript
import { z } from 'zod';
export declare const Pubspec: z.ZodPipeline<z.ZodEffects<z.ZodString, string | number | boolean | import("type-fest").JsonObject | import("type-fest").JsonValue[] | readonly import("type-fest").JsonValue[] | null, string>, z.ZodObject<{
environment: z.ZodObject<{
sdk: z.ZodString;
flutter: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
sdk: string;
flutter?: string | undefined;
}, {
sdk: string;
flutter?: string | undefined;
}>;
dependencies: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, string | {
path?: string | undefined;
version?: string | undefined;
hosted?: string | {
url?: string | undefined;
name?: string | undefined;
} | undefined;
}>, Record<string, any>>>;
dev_dependencies: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, string | {
path?: string | undefined;
version?: string | undefined;
hosted?: string | {
url?: string | undefined;
name?: string | undefined;
} | undefined;
}>, Record<string, any>>>;
}, "strip", z.ZodTypeAny, {
environment: {
sdk: string;
flutter?: string | undefined;
};
dependencies?: Record<string, string | {
path?: string | undefined;
version?: string | undefined;
hosted?: string | {
url?: string | undefined;
name?: string | undefined;
} | undefined;
}> | undefined;
dev_dependencies?: Record<string, string | {
path?: string | undefined;
version?: string | undefined;
hosted?: string | {
url?: string | undefined;
name?: string | undefined;
} | undefined;
}> | undefined;
}, {
environment: {
sdk: string;
flutter?: string | undefined;
};
dependencies?: Record<string, any> | undefined;
dev_dependencies?: Record<string, any> | undefined;
}>>;
export type Pubspec = z.infer<typeof Pubspec>;
export declare const PubspecLock: z.ZodPipeline<z.ZodEffects<z.ZodString, string | number | boolean | import("type-fest").JsonObject | import("type-fest").JsonValue[] | readonly import("type-fest").JsonValue[] | null, string>, z.ZodObject<{
sdks: z.ZodObject<{
dart: z.ZodString;
flutter: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
dart: string;
flutter?: string | undefined;
}, {
dart: string;
flutter?: string | undefined;
}>;
}, "strip", z.ZodTypeAny, {
sdks: {
dart: string;
flutter?: string | undefined;
};
}, {
sdks: {
dart: string;
flutter?: string | undefined;
};
}>>;
export type PubspecLock = z.infer<typeof PubspecLock>;