5 lines
225 B
TypeScript
5 lines
225 B
TypeScript
import * as z from 'zod';
|
|
|
|
export const UserScalarFieldEnumSchema = z.enum(['id', 'username', 'password', 'autoBackupEnabled', 'usbBackupEnabled'])
|
|
|
|
export type UserScalarFieldEnum = z.infer<typeof UserScalarFieldEnumSchema>; |