diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-01-15 16:20:49 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-01-15 16:20:49 +0100 |
commit | c8a4523ea2f0a9d40a9fb2fb1dca01065c2e6ca1 (patch) | |
tree | 3187629b8a4e4afe026d83833641eee7a661ae27 /src/api.ts | |
parent | 1403e2cf7eddd4f8793c273452c6659d1e972d31 (diff) |
login / button changes / account homepage
Diffstat (limited to 'src/api.ts')
-rw-r--r-- | src/api.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/api.ts b/src/api.ts new file mode 100644 index 0000000..e2e3d93 --- /dev/null +++ b/src/api.ts @@ -0,0 +1,9 @@ +export interface userInfo { + avatar?: string|null, + coutry?: string|null, + id?: string, + registered?: number, + type?: string, + username?: string, +}; + |