diff options
Diffstat (limited to 'cli/js/ops/tls.ts')
-rw-r--r-- | cli/js/ops/tls.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/ops/tls.ts b/cli/js/ops/tls.ts index b52ad65bb..e52143cb0 100644 --- a/cli/js/ops/tls.ts +++ b/cli/js/ops/tls.ts @@ -23,7 +23,7 @@ interface ConnectTLSResponse { }; } -export async function connectTLS( +export function connectTLS( args: ConnectTLSRequest ): Promise<ConnectTLSResponse> { return sendAsync("op_connect_tls", args); @@ -43,7 +43,7 @@ interface AcceptTLSResponse { }; } -export async function acceptTLS(rid: number): Promise<AcceptTLSResponse> { +export function acceptTLS(rid: number): Promise<AcceptTLSResponse> { return sendAsync("op_accept_tls", { rid }); } |