mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
- Separated types and moved them into the proper ./types folder defined in the tsconfig.json. - Defined a new folder alias `#types`. - New eslint rule to enforce `import type` when a type is imported. - Removed Geometry Class and used manual Point types from `geojson`
21 lines
369 B
TypeScript
21 lines
369 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[]
|
|
}
|