diff options
Diffstat (limited to 'cli/js/ops/repl.ts')
-rw-r--r-- | cli/js/ops/repl.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/ops/repl.ts b/cli/js/ops/repl.ts index 3f40f4456..1781aa089 100644 --- a/cli/js/ops/repl.ts +++ b/cli/js/ops/repl.ts @@ -6,6 +6,6 @@ export function startRepl(historyFile: string): number { return sendSync("op_repl_start", { historyFile }); } -export async function readline(rid: number, prompt: string): Promise<string> { +export function readline(rid: number, prompt: string): Promise<string> { return sendAsync("op_repl_readline", { rid, prompt }); } |