summary refs log tree commit diff
path: root/src/Schema
diff options
context:
space:
mode:
authorxnacly <matteogropp@gmail.com>2021-02-09 19:15:08 +0100
committerxnacly <matteogropp@gmail.com>2021-02-09 19:15:08 +0100
commit16a01111b831caa310604af6644d9db680291b0d (patch)
treea2f1577761fb127db53d41617cd6f560c426097c /src/Schema
parentMerge branch 'main' of https://github.com/discord-open-source/discord-server-... (diff)
downloadserver-16a01111b831caa310604af6644d9db680291b0d.tar.xz
added missing exports (guildschema)
Diffstat (limited to 'src/Schema')
-rw-r--r--src/Schema/Guild.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Schema/Guild.ts b/src/Schema/Guild.ts

index 6c1ab00c..c8634362 100644 --- a/src/Schema/Guild.ts +++ b/src/Schema/Guild.ts
@@ -1,4 +1,4 @@ -export const Guild = { +export const GuildSchema = { name: String, // ! 2-100 chars $region: String, // ? voice region ? // $icon: String, // TODO: add icon data (base64 128x128) @@ -16,7 +16,7 @@ export const Guild = { // $system_channel_id: snowflake, }; -export interface Guild { +export interface GuildSchema { name: string; // ! 2-100 chars region?: string; // ? voice region ? // icon?: string; // TODO: add icon data (base64 128x128)