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/LabelTask.ts

12 lines
322 B
TypeScript

import type { TypeOf } from 'zod'
import { AbstractSchema } from './abstract'
import { IdSchema } from './common/id'
export const LabelTaskSchema = AbstractSchema.extend({
id: IdSchema.nullable(),
taskId: IdSchema.nullable(),
labelId: IdSchema.nullable(),
})
export type LabelTask = TypeOf<typeof LabelTaskSchema>