diff options
author | xnacly <matteogropp@gmail.com> | 2021-02-09 19:15:08 +0100 |
---|---|---|
committer | xnacly <matteogropp@gmail.com> | 2021-02-09 19:15:08 +0100 |
commit | 16a01111b831caa310604af6644d9db680291b0d (patch) | |
tree | a2f1577761fb127db53d41617cd6f560c426097c /src/index.ts | |
parent | Merge branch 'main' of https://github.com/discord-open-source/discord-server-... (diff) | |
download | server-16a01111b831caa310604af6644d9db680291b0d.tar.xz |
added missing exports (guildschema)
Diffstat (limited to 'src/index.ts')
-rw-r--r-- | src/index.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts index 83a3d20a..cdacf53b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,7 @@ import { checkToken } from "./util/checkToken"; import Config, { DefaultOptions } from "./util/Config"; import db from "./util/Database"; + import * as Constants from "./util/Constants"; import { Channel } from "./models/Channel"; import { Emoji } from "./models/Emoji"; @@ -9,9 +10,13 @@ import { Invite } from "./models/Invite"; import { Member } from "./models/Member"; import { Role } from "./models/Role"; import { User } from "./models/User"; + +//* schema import { EmojiSchema } from "./Schema/Emoji"; import { ActivitySchema } from "./Schema/Activity"; import { IdentifySchema } from "./Schema/Identify"; +import { GuildSchema } from "./Schema/Guild"; + import { trimSpecial } from "./util/String"; import { BitField } from "./util/BitField"; import { Intents } from "./util/Intents"; @@ -43,4 +48,5 @@ export { EmojiSchema, ActivitySchema, IdentifySchema, + GuildSchema, }; |