Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down