From db8f7c9f500d64a9a7c8588c53086a32ed2d1b9c Mon Sep 17 00:00:00 2001 From: shira <98327283+1shira@users.noreply.github.com> Date: Thu, 20 Nov 2025 11:41:36 +0100 Subject: [PATCH] add chats.send overload --- env.d.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/env.d.ts b/env.d.ts index bb24580..fd6ede8 100644 --- a/env.d.ts +++ b/env.d.ts @@ -74,10 +74,13 @@ type Fullsec = Subscripts & PlayerFullsec & { * @description This script lets you send a message to the specified channel. * You must have joined the channel, and you will see your own message (unlike chats.tell). */ - send: (args: { + send: ((args: { /** The channel to send the message to. */ channel: string /** The message to send. */ msg: string - }) => ScriptResponse + }) => ScriptResponse) & ((args: { + /** The channel to send the message to. */ c: string + /** The message to send. */ msg: string + }) => ScriptResponse) /** * **FULLSEC**