Files
pp-tcms/frontend/types/user.ts
Takeshi Kimata 8103297dae Implement Auth
2024-05-17 23:30:13 +09:00

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;
};