Skip to main content
Version: Next

Connection.send() method

Signature:

class Connection {
send<T extends keyof ProtocolMapping.Commands>(
method: T,
params?: ProtocolMapping.Commands[T]['paramsType'][0],
options?: CommandOptions
): Promise<ProtocolMapping.Commands[T]['returnType']>;
}

Parameters

Parameter

Type

Description

method

T

params

ProtocolMapping.Commands[T]['paramsType'][0]

(Optional)

options

CommandOptions

(Optional)

Returns:

Promise<ProtocolMapping.Commands[T]['returnType']>