From ea41892fef208b10c1bb322de7683c39ebab3dd5 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Fri, 5 Feb 2021 22:01:01 +0100 Subject: :wrench: build --- dist/models/Invite.d.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 dist/models/Invite.d.ts (limited to 'dist/models/Invite.d.ts') diff --git a/dist/models/Invite.d.ts b/dist/models/Invite.d.ts new file mode 100644 index 00000000..e68886c6 --- /dev/null +++ b/dist/models/Invite.d.ts @@ -0,0 +1,30 @@ +export interface Invite { + code: string; + guild: { + id: bigint; + name: string; + splash: string; + description: string; + icon: string; + features: Object; + verification_level: number; + }; + channel: { + id: bigint; + name: string; + type: number; + }; + inviter: { + id: bigint; + username: string; + avatar: string; + discriminator: number; + }; + target_user: { + id: bigint; + username: string; + avatar: string; + discriminator: number; + }; + target_user_type: number; +} -- cgit 1.5.1