mobilizon.chapril.org-mobil.../js/src/types/login.model.ts

11 lines
206 B
TypeScript
Raw Normal View History

import type { ICurrentUser } from "@/types/current-user.model";
2019-01-18 14:47:10 +01:00
2019-08-12 16:04:16 +02:00
export interface IToken {
accessToken: string;
refreshToken: string;
}
2019-01-11 13:58:29 +01:00
2019-08-12 16:04:16 +02:00
export interface ILogin extends IToken {
user: ICurrentUser;
2019-01-11 13:58:29 +01:00
}