fix bugs in the backend classes

This commit is contained in:
Sven Czarnian
2022-11-05 00:30:48 +01:00
parent df0a6ade57
commit e1ced4e9f8
4 changed files with 35 additions and 12 deletions

View File

@@ -40,3 +40,8 @@ export interface IAuthState {
valid: boolean,
user: User,
};
export interface TimestampBackend {
status: BackendReturnStatus;
timestamp: number;
};