Skip to content

Commit

Permalink
made send private
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengill committed Jan 9, 2021
1 parent 3d1f888 commit 7a2f96b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/socket-mode/src/SocketModeClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ export class SocketModeClient extends EventEmitter {
* @param id the envelope id
* @param body the message body
*/
public send(id: string, body = {}): Promise<void> {
private send(id: string, body = {}): Promise<void> {
const message = { envelope_id: id, ...body };

return new Promise((resolve, reject) => {
Expand Down

0 comments on commit 7a2f96b

Please sign in to comment.