8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
interface FormUser {
|
|
username: string;
|
|
password: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
email: string;
|
|
}
|
|
export type { FormUser };
|