From 673e691c6e26a0abbadb93cf8ef4b1e45ad1accc Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Thu, 11 Feb 2021 20:44:26 +0100 Subject: :wrench: build --- dist/index.d.ts | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'dist/index.d.ts') 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, }; -- cgit 1.5.1