11 lines
147 B
TypeScript
11 lines
147 B
TypeScript
|
|
interface FormData {
|
||
|
|
detail: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface FormRef {
|
||
|
|
detail: object | null;
|
||
|
|
[key: string]: any;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { FormData, FormRef };
|