10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
interface DataOption {
|
|
id: string
|
|
name: string
|
|
}
|
|
interface FormRef {
|
|
date: object | null
|
|
reason: object | null
|
|
[key: string]: any
|
|
}
|
|
export type { DataOption, FormRef }
|