2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Connection.send
|
|
|
|
---
|
|
|
|
|
|
|
|
# Connection.send() method
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Connection {
|
|
|
|
send<T extends keyof ProtocolMapping.Commands>(
|
|
|
|
method: T,
|
|
|
|
...paramArgs: ProtocolMapping.Commands[T]['paramsType']
|
|
|
|
): Promise<ProtocolMapping.Commands[T]['returnType']>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | --------------------------------------------- | ----------- |
|
|
|
|
| method | T | |
|
|
|
|
| paramArgs | ProtocolMapping.Commands\[T\]\['paramsType'\] | |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<ProtocolMapping.Commands\[T\]\['returnType'\]>
|