From bb511abc03bb66848947e37a999502b813c77269 Mon Sep 17 00:00:00 2001 From: 8cy <50817549+8cy@users.noreply.github.com> Date: Thu, 23 Jul 2020 23:24:17 -0700 Subject: goodbye old uwufier :cry: --- server/src/structures/Interfaces.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 server/src/structures/Interfaces.ts (limited to 'server/src/structures/Interfaces.ts') diff --git a/server/src/structures/Interfaces.ts b/server/src/structures/Interfaces.ts new file mode 100644 index 0000000..4ee09f4 --- /dev/null +++ b/server/src/structures/Interfaces.ts @@ -0,0 +1,16 @@ +export interface APIUser { + id: string; + username: string; + discriminator: string; + avatar: string; + guilds: APIGuildMin[]; + admin: boolean; +} + +export interface APIGuildMin { + id: string; + name: string; + icon: string; + admin: boolean; + invited: boolean; +} \ No newline at end of file -- cgit v1.2.3