25 lines
652 B
TypeScript
25 lines
652 B
TypeScript
import * as z from 'zod';
|
|
export declare const BackupDestinationInputSchema: z.ZodObject<{
|
|
id: z.ZodNumber;
|
|
userId: z.ZodNumber;
|
|
path: z.ZodString;
|
|
isActive: z.ZodBoolean;
|
|
createdAt: z.ZodDate;
|
|
user: z.ZodUnknown;
|
|
}, "strict", z.ZodTypeAny, {
|
|
path: string;
|
|
id: number;
|
|
createdAt: Date;
|
|
userId: number;
|
|
isActive: boolean;
|
|
user?: unknown;
|
|
}, {
|
|
path: string;
|
|
id: number;
|
|
createdAt: Date;
|
|
userId: number;
|
|
isActive: boolean;
|
|
user?: unknown;
|
|
}>;
|
|
export type BackupDestinationInputType = z.infer<typeof BackupDestinationInputSchema>;
|
|
//# sourceMappingURL=BackupDestination.input.d.ts.map
|