move the auth state to the types

This commit is contained in:
Sven Czarnian
2022-11-04 21:21:55 +01:00
parent 6accc3ef06
commit 6be1bf0f43
2 changed files with 6 additions and 6 deletions

View File

@@ -10,3 +10,8 @@ export interface User {
administrator: boolean;
airportConfigurationAccess: string[];
};
export interface IAuthState {
valid: boolean,
user: User,
};