mirror of
https://github.com/emailerfacu-spec/minix-front.git
synced 2026-04-08 14:20:44 -03:00
codigo de login front
This commit is contained in:
16
src/types.d.ts
vendored
16
src/types.d.ts
vendored
@@ -25,3 +25,19 @@ export interface User {
|
||||
followingCount: number;
|
||||
refreshTokens: RefreshToken[];
|
||||
}
|
||||
|
||||
export interface Sesion {
|
||||
accessToken:string?;
|
||||
}
|
||||
|
||||
export interface LoginDto {
|
||||
username: string?;
|
||||
password: string?;
|
||||
}
|
||||
|
||||
export interface RegisterDto {
|
||||
username: string?;
|
||||
email: string?;
|
||||
password: string?;
|
||||
displayName: string?;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user