summary refs log tree commit diff
path: root/src/schema
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-05 15:05:41 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-05 15:05:41 +0200
commit87634d552244ce36fe0f39a9e2246f785d3afd58 (patch)
treec6c93aea93d39dbc8d477e0a1124f455ac3333dd /src/schema
parent:bug: fix test client (diff)
parent[Route] PATCH /guilds/:id/channels (diff)
downloadserver-87634d552244ce36fe0f39a9e2246f785d3afd58.tar.xz
Merge branch 'master' of https://github.com/discord-open-source/discord-api
Diffstat (limited to 'src/schema')
-rw-r--r--src/schema/Member.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/schema/Member.ts b/src/schema/Member.ts
new file mode 100644

index 00000000..037e24f4 --- /dev/null +++ b/src/schema/Member.ts
@@ -0,0 +1,13 @@ +export const MemberCreateSchema = { + id: String, + nick: String, + guild_id: String, + joined_at: Date, +}; + +export interface MemberCreateSchema { + id: string; + nick: string; + guild_id: string; + joined_at: Date; +}