initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import * as z from 'zod';
|
||||
// prettier-ignore
|
||||
export const DatabaseBackupResultSchema = z.object({
|
||||
id: z.number().int(),
|
||||
userId: z.number().int(),
|
||||
createdAt: z.date(),
|
||||
user: z.unknown()
|
||||
}).strict();
|
||||
|
||||
export type DatabaseBackupResultType = z.infer<typeof DatabaseBackupResultSchema>;
|
||||
Reference in New Issue
Block a user