summary refs log tree commit diff
path: root/src/models/index.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-09 13:59:02 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-09 13:59:02 +0200
commitbd7b29cb1edba922524330ef3505908c797e057a (patch)
tree9185dff910ae324b39c3e0e14e86fc01990c5cfa /src/models/index.ts
parent:bug: fix Activity model with body schema (diff)
downloadserver-bd7b29cb1edba922524330ef3505908c797e057a.tar.xz
:bug: fix Activity model
Diffstat (limited to 'src/models/index.ts')
-rw-r--r--src/models/index.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/models/index.ts b/src/models/index.ts

index 876e5984..5752e60d 100644 --- a/src/models/index.ts +++ b/src/models/index.ts
@@ -19,18 +19,18 @@ mongoose.plugin((schema: Schema, opts: any) => { }); }); +export * from "./Activity"; +export * from "./Application"; export * from "./Ban"; export * from "./Channel"; export * from "./Emoji"; +export * from "./Event"; export * from "./Guild"; export * from "./Invite"; -export * from "./Member"; -export * from "./Role"; -export * from "./User"; -export * from "./Activity"; -export * from "./Application"; export * from "./Interaction"; +export * from "./Member"; export * from "./Message"; export * from "./Status"; +export * from "./Role"; +export * from "./User"; export * from "./VoiceState"; -export * from "./Event";