13 lines
212 B
TypeScript
13 lines
212 B
TypeScript
export type UserType = {
|
|
id: number | null;
|
|
email: string;
|
|
password: string;
|
|
username: string;
|
|
role: number;
|
|
avatarPath: string;
|
|
};
|
|
|
|
export type AuthMessages = {
|
|
signup: string;
|
|
signin: string;
|
|
}; |