summary refs log tree commit diff
path: root/dist/index.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-11 20:44:26 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-11 20:44:26 +0100
commit673e691c6e26a0abbadb93cf8ef4b1e45ad1accc (patch)
tree8496623a70f192e4e88ec487e38e0f6c284dc883 /dist/index.d.ts
parent:sparkles: updated other models (diff)
downloadserver-673e691c6e26a0abbadb93cf8ef4b1e45ad1accc.tar.xz
:wrench: build
Diffstat (limited to 'dist/index.d.ts')
-rw-r--r--dist/index.d.ts16
1 files changed, 11 insertions, 5 deletions
diff --git a/dist/index.d.ts b/dist/index.d.ts

index f6968189..c739f23e 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts
@@ -2,14 +2,20 @@ 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 { Channel, ChannelType, DMChannel, GuildChannel, ReadState, TextBasedChannel, TextChannel, VoiceChannel } from "./models/Channel"; import { Emoji } from "./models/Emoji"; import { Guild } from "./models/Guild"; -import { Event } from "./models/Event"; import { Invite } from "./models/Invite"; -import { Member } from "./models/Member"; +import { Member, MuteConfig, PublicMember, UserGuildSettings } from "./models/Member"; import { Role } from "./models/Role"; -import { User } from "./models/User"; +import { User, ConnectedAccount, PublicUser, Relationship, UserSettings } from "./models/User"; +import { Activity, ActivityType, Presence } from "./models/Activity"; +import { ApplicationCommand, ApplicationCommandInteractionData, ApplicationCommandInteractionDataOption, ApplicationCommandOption, ApplicationCommandOptionChoice, ApplicationCommandOptionType } from "./models/Application"; +import { ApplicationCommandPayload, EVENT, Event, MessagePayload } from "./models/Event"; +import { Interaction, InteractionApplicationCommandCallbackData, InteractionResponseType, InteractionType } from "./models/Interaction"; +import { AllowedMentions, Attachment, Embed, EmbedImage, Message, MessageType, PartialEmoji, Reaction } from "./models/Message"; +import { ClientStatus, Status } from "./models/Status"; +import { VoiceState } from "./models/VoiceState"; import { trimSpecial } from "./util/String"; import { BitField } from "./util/BitField"; import { Intents } from "./util/Intents"; @@ -17,4 +23,4 @@ import { MessageFlags } from "./util/MessageFlags"; import { Permissions } from "./util/Permissions"; import { Snowflake } from "./util/Snowflake"; import { UserFlags } from "./util/UserFlags"; -export { trimSpecial, checkToken, Config, Constants, db, BitField, DefaultOptions, Permissions, MessageFlags, UserFlags, Snowflake, Intents, Channel, Event, Emoji, Guild, Invite, Member, Role, User, }; +export { trimSpecial, checkToken, Config, Constants, db, Activity, ActivityType, Presence, BitField, DefaultOptions, Permissions, VoiceState, Snowflake, Intents, Channel, ChannelType, DMChannel, GuildChannel, ReadState, TextBasedChannel, TextChannel, VoiceChannel, Emoji, Guild, Invite, Member, ClientStatus, Status, MuteConfig, PublicMember, UserGuildSettings, Role, User, UserFlags, UserSettings, ConnectedAccount, PublicUser, Relationship, EVENT, Event, MessageType, Message, MessageFlags, MessagePayload, AllowedMentions, Attachment, Embed, EmbedImage, PartialEmoji, Reaction, Interaction, InteractionApplicationCommandCallbackData, InteractionResponseType, InteractionType, ApplicationCommand, ApplicationCommandPayload, ApplicationCommandInteractionData, ApplicationCommandInteractionDataOption, ApplicationCommandOption, ApplicationCommandOptionChoice, ApplicationCommandOptionType, };