24 lines
599 B
TypeScript
24 lines
599 B
TypeScript
import * as z from 'zod';
|
|
export declare const BackupDestinationUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
id: z.ZodNumber;
|
|
userId: z.ZodNumber;
|
|
path: z.ZodString;
|
|
isActive: z.ZodBoolean;
|
|
createdAt: z.ZodDate;
|
|
user: z.ZodUnknown;
|
|
}, "strip", z.ZodTypeAny, {
|
|
path: string;
|
|
createdAt: Date;
|
|
id: number;
|
|
userId: number;
|
|
isActive: boolean;
|
|
user?: unknown;
|
|
}, {
|
|
path: string;
|
|
createdAt: Date;
|
|
id: number;
|
|
userId: number;
|
|
isActive: boolean;
|
|
user?: unknown;
|
|
}>>;
|
|
//# sourceMappingURL=BackupDestinationUpdateResult.schema.d.ts.map
|