mobilizon.chapril.org-mobil.../js/src/types/login.model.ts
Thomas Citharel 4144e9ffd0
Introduce group basic federation, event new page and notifications
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-06-03 16:01:26 +02:00

11 lines
201 B
TypeScript

import { ICurrentUser } from "@/types/current-user.model";
export interface IToken {
accessToken: string;
refreshToken: string;
}
export interface ILogin extends IToken {
user: ICurrentUser;
}