mirror of
https://github.com/tribufu/tribufu-js
synced 2026-06-01 09:42:36 +00:00
Delete user.ts
This commit is contained in:
parent
a83926229a
commit
b4d074420a
1 changed files with 0 additions and 27 deletions
|
|
@ -1,27 +0,0 @@
|
||||||
// Copyright (c) Tribufu. All Rights Reserved.
|
|
||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
export type AccountType = "user" | "bot" | "org";
|
|
||||||
|
|
||||||
export interface User {
|
|
||||||
id: number,
|
|
||||||
uuid: string,
|
|
||||||
name: string,
|
|
||||||
displayName: string,
|
|
||||||
kind: AccountType,
|
|
||||||
publicFlags: number,
|
|
||||||
verified: boolean,
|
|
||||||
level: number,
|
|
||||||
experience: number,
|
|
||||||
publicBirthday: boolean,
|
|
||||||
birthday?: string | null,
|
|
||||||
points: number,
|
|
||||||
location?: string | null,
|
|
||||||
photoUrl?: string | null,
|
|
||||||
bannerUrl?: string | null,
|
|
||||||
lastOnline?: string | null,
|
|
||||||
biography?: string | null,
|
|
||||||
viewCount: number,
|
|
||||||
created: string,
|
|
||||||
updated?: string | null,
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue