fix: broken imports

This commit is contained in:
Skillz4Killz
2021-11-14 17:27:05 +00:00
committed by GitHub
parent eb4bc94aea
commit a65386ac6c
5 changed files with 0 additions and 36 deletions
-6
View File
@@ -569,9 +569,6 @@ export interface Helpers {
guildBannerURL: typeof helpers.guildBannerURL;
guildIconURL: typeof helpers.guildIconURL;
guildSplashURL: typeof helpers.guildSplashURL;
isButton: typeof helpers.isButton;
isSelectMenu: typeof helpers.isSelectMenu;
isSlashCommand: typeof helpers.isSlashCommand;
kickMember: typeof helpers.kickMember;
leaveGuild: typeof helpers.leaveGuild;
moveMember: typeof helpers.moveMember;
@@ -739,9 +736,6 @@ export function createBaseHelpers(options: Partial<Helpers>) {
guildBannerURL: options.guildBannerURL || helpers.guildBannerURL,
guildIconURL: options.guildIconURL || helpers.guildIconURL,
guildSplashURL: options.guildSplashURL || helpers.guildSplashURL,
isButton: options.isButton || helpers.isButton,
isSelectMenu: options.isSelectMenu || helpers.isSelectMenu,
isSlashCommand: options.isSlashCommand || helpers.isSlashCommand,
kickMember: options.kickMember || helpers.kickMember,
leaveGuild: options.leaveGuild || helpers.leaveGuild,
moveMember: options.moveMember || helpers.moveMember,
-7
View File
@@ -113,9 +113,6 @@ import { editGuildTemplate } from "./templates/edit_guild_template.ts";
import { getGuildTemplates } from "./templates/get_guild_templates.ts";
import { getTemplate } from "./templates/get_template.ts";
import { syncGuildTemplate } from "./templates/sync_guild_template.ts";
// Type Guards
import { isButton } from "./type_guards/is_button.ts";
import { isSelectMenu } from "./type_guards/is_select_menu.ts";
import { createWebhook } from "./webhooks/create_webhook.ts";
import { deleteWebhook } from "./webhooks/delete_webhook.ts";
@@ -133,7 +130,6 @@ import { createStageInstance } from "./channels/create_stage_instance.ts";
import { updateStageInstance } from "./channels/update_stage_instance.ts";
import { getStageInstance } from "./channels/get_stage_instance.ts";
import { deleteStageInstance } from "./channels/delete_stage_instance.ts";
import { isSlashCommand } from "./type_guards/is_slash_command.ts";
import { connectToVoiceChannel } from "./voice/connect_to_voice_channel.ts";
import { addToThread } from "./channels/threads/add_to_thread.ts";
@@ -263,9 +259,6 @@ export {
guildBannerURL,
guildIconURL,
guildSplashURL,
isButton,
isSelectMenu,
isSlashCommand,
kickMember,
leaveGuild,
moveMember,
-8
View File
@@ -1,8 +0,0 @@
import type { ButtonComponent } from "../../types/messages/components/button_component.ts";
import type { ActionRoleComponents } from "../../types/messages/components/message_components.ts";
import { MessageComponentTypes } from "../../types/messages/components/message_component_types.ts";
/** A type guard function to tell if it is a button component */
export function isButton(component: ActionRoleComponents): component is ButtonComponent {
return component.type === MessageComponentTypes.Button;
}
@@ -1,8 +0,0 @@
import type { ActionRoleComponents } from "../../types/messages/components/message_components.ts";
import { MessageComponentTypes } from "../../types/messages/components/message_component_types.ts";
import type { SelectMenuComponent } from "../../types/messages/components/select_menu.ts";
/** A type guard function to tell if it is a button component */
export function isSelectMenu(component: ActionRoleComponents): component is SelectMenuComponent {
return component.type === MessageComponentTypes.SelectMenu;
}
@@ -1,7 +0,0 @@
import { Interaction, SlashCommandInteraction } from "../../types/interactions/interaction.ts";
import { DiscordInteractionTypes } from "../../types/interactions/interaction_types.ts";
/** A type guard function to tell if it is a slash command interaction */
export function isSlashCommand(interaction: Interaction): interaction is SlashCommandInteraction {
return interaction.type === DiscordInteractionTypes.ApplicationCommand;
}