From a1e40a670ca706391ecbe04d225abea98e768f71 Mon Sep 17 00:00:00 2001 From: Skillz Date: Sat, 1 May 2021 11:06:25 -0400 Subject: [PATCH] fix exports for type guards --- src/helpers/mod.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/helpers/mod.ts b/src/helpers/mod.ts index 483f7378f..44bb6a467 100644 --- a/src/helpers/mod.ts +++ b/src/helpers/mod.ts @@ -122,6 +122,9 @@ import { executeWebhook } from "./webhooks/execute_webhook.ts"; import { getWebhook } from "./webhooks/get_webhook.ts"; import { getWebhooks } from "./webhooks/get_webhooks.ts"; import { getWebhookWithToken } from "./webhooks/get_webhook_with_token.ts"; +// Type Guards +import { isActionRow } from "./type_guards/is_action_row.ts"; +import { isButton } from "./type_guards/is_button.ts"; export { addDiscoverySubcategory, @@ -225,6 +228,8 @@ export { guildBannerURL, guildIconURL, guildSplashURL, + isActionRow, + isButton, isChannelSynced, kick, kickMember,