Ping / circuit latency, break out commands, add typing function for IM, add thinkingTime and charactersPerSecond parameters to typing functions
This commit is contained in:
16
dist/classes/commands/CommunicationsCommands.d.ts
vendored
Normal file
16
dist/classes/commands/CommunicationsCommands.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { CommandsBase } from './CommandsBase';
|
||||
import { UUID } from '../UUID';
|
||||
import { ChatType } from '../../enums/ChatType';
|
||||
export declare class CommunicationsCommands extends CommandsBase {
|
||||
sendInstantMessage(to: UUID | string, message: string): Promise<void>;
|
||||
nearbyChat(message: string, type: ChatType, channel?: number): Promise<void>;
|
||||
say(message: string, channel?: number): Promise<void>;
|
||||
whisper(message: string, channel?: number): Promise<void>;
|
||||
shout(message: string, channel?: number): Promise<void>;
|
||||
startTypingLocal(): Promise<void>;
|
||||
stopTypingLocal(): Promise<void>;
|
||||
startTypingIM(to: UUID | string): Promise<void>;
|
||||
stopTypingIM(to: UUID | string): Promise<void>;
|
||||
typeInstantMessage(to: UUID | string, message: string, thinkingTime?: number, charactersPerSecond?: number): Promise<void>;
|
||||
typeLocalMessage(message: string, thinkingTime?: number, charactersPerSecond?: number): Promise<void>;
|
||||
}
|
||||
Reference in New Issue
Block a user