Define user

This commit is contained in:
danbulant 2020-02-15 17:31:51 +01:00
parent 95514067c7
commit ca8e182ebf
2 changed files with 20 additions and 0 deletions

15
client/src/defs/user.ts Normal file
View file

@ -0,0 +1,15 @@
import UserSettings from "./userSettings";
interface User {
sysName: string;
uuid: string;
firstName: string;
lastName: string;
avatar: URL;
backgrounds: URL[];
settings: UserSettings;
}
export default User;

View file

@ -0,0 +1,5 @@
interface UserSettings {
}
export default UserSettings;