utopia-ui/types/FormState.d.ts
2025-01-31 23:29:32 +01:00

23 lines
399 B
TypeScript

import type { Item } from './Item'
import type { Tag } from './Tag'
export interface FormState {
color: string
id: string
group_type: string
status: string
name: string
subname: string
text: string
contact: string
telephone: string
next_appointment: string
image: string
marker_icon: string
offers: Tag[]
needs: Tag[]
relations: Item[]
start: string
end: string
}