From 02a4fc06da9e3687af11f2197fe80f9272c84d6e Mon Sep 17 00:00:00 2001 From: Yuzu Date: Thu, 14 Jul 2022 19:50:50 -0500 Subject: [PATCH] idea: remove args_0/args_1 naming --- packages/biscuit/Actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/biscuit/Actions.ts b/packages/biscuit/Actions.ts index 89e942d..ea000ef 100644 --- a/packages/biscuit/Actions.ts +++ b/packages/biscuit/Actions.ts @@ -67,7 +67,7 @@ import { } from "./structures/MessageReaction.ts"; export type RawHandler = (...args: [Session, number, T]) => void; -export type Handler = (...args: T) => unknown; +export type Handler = (...args: T) => unknown; export const READY: RawHandler = (session, shardId, payload) => { session.applicationId = payload.application.id;