diff --git a/client/src/defs/user.ts b/client/src/defs/user.ts new file mode 100644 index 0000000..ca874cd --- /dev/null +++ b/client/src/defs/user.ts @@ -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; \ No newline at end of file diff --git a/client/src/defs/userSettings.ts b/client/src/defs/userSettings.ts new file mode 100644 index 0000000..7738915 --- /dev/null +++ b/client/src/defs/userSettings.ts @@ -0,0 +1,5 @@ +interface UserSettings { + +} + +export default UserSettings; \ No newline at end of file