35f9c6d1e6
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
28 lines
702 B
Markdown
28 lines
702 B
Markdown
---
|
|
sidebar_label: Connection.send
|
|
---
|
|
|
|
# Connection.send() method
|
|
|
|
#### Signature:
|
|
|
|
```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'\]>
|