Initial Typescript models.

This commit is contained in:
Brian Cao 2022-11-15 13:21:14 -08:00
parent 04e9f06e93
commit 0aaba8cbd1
74 changed files with 1144 additions and 768 deletions

8
interface/api/auth.d.ts vendored Normal file
View file

@ -0,0 +1,8 @@
export interface Auth {
user: {
id: string;
username: string;
isAdmin: boolean;
};
shareToken: string;
}