From 0a3fedd1d8c17f4913e7bf368e642115675adc38 Mon Sep 17 00:00:00 2001 From: EvolutionX Date: Thu, 10 Aug 2023 11:14:40 +0530 Subject: [PATCH] chore: git stash changelog.md license.md readme.md dist node_modules package-lock.json package.json renovate.json src templates tsconfig.json tsup.config.ts permalink: http://whatthecommit.com/7ad7c71289d30791e2f20c54465142aa --- src/rest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rest.ts b/src/rest.ts index abe184d..a9c89dd 100644 --- a/src/rest.ts +++ b/src/rest.ts @@ -29,7 +29,7 @@ export const create = (appid: string, token: string) => { return fetch(guildCommandURL, { headers }); }, - putGuildCommands: (guildId: string, guildCommand: any) => { + putGuildCommands: (guildId: string, guildCommand: unknown) => { const guildCommandURL = new URL(`${appid}/guilds/${guildId}/commands`, baseURL); return fetch(guildCommandURL, { method: 'PUT',