22 lines
404 B
TypeScript
22 lines
404 B
TypeScript
|
|
interface FormData {
|
||
|
|
prefix: string;
|
||
|
|
firstname: string;
|
||
|
|
lastname: string;
|
||
|
|
position: string;
|
||
|
|
phone: string;
|
||
|
|
email: string;
|
||
|
|
}
|
||
|
|
interface FormRef {
|
||
|
|
prefix: object | null;
|
||
|
|
firstname: object | null;
|
||
|
|
lastname: object | null;
|
||
|
|
position: object | null;
|
||
|
|
phone: object | null;
|
||
|
|
email: object | null;
|
||
|
|
[key: string]: any;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type {
|
||
|
|
FormData,
|
||
|
|
FormRef
|
||
|
|
};
|