This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/modelSchema/file.ts

14 lines
376 B
TypeScript

import { type TypeOf, object, number, string } from 'zod'
import { DateSchema } from './common/date'
import { IdSchema } from './common/id'
export const FileSchema = object({
id: IdSchema.default(0),
mime: string().default(''),
name: string().default(''),
size: number().default(0),
created: DateSchema.nullable(),
})
export type File = TypeOf<typeof FileSchema>