From d292919905a9a5107532f396ebd24565d85ba686 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Mon, 25 Jul 2022 22:11:57 -0500 Subject: [PATCH] fix: added missing `GuildMember` import (#9) --- TypeScript/permCheck.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TypeScript/permCheck.ts b/TypeScript/permCheck.ts index c0a2692..93dd0a8 100644 --- a/TypeScript/permCheck.ts +++ b/TypeScript/permCheck.ts @@ -17,7 +17,7 @@ * ``` */ -import { PermissionResolvable } from "discord.js"; +import { PermissionResolvable, type GuildMember } from "discord.js"; import { CommandType, EventPlugin, PluginType } from "@sern/handler"; export function permCheck(perm: PermissionResolvable, response: string): EventPlugin { return {