2022-07-05 12:42:31 +00:00
|
|
|
---
|
|
|
|
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'\]>
|
|
|
|
|