2023-02-14 11:38:45 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// @deno-types="./_readline.d.ts"
|
|
|
|
|
|
|
|
import {
|
|
|
|
clearLine,
|
|
|
|
clearScreenDown,
|
|
|
|
createInterface,
|
|
|
|
cursorTo,
|
|
|
|
emitKeypressEvents,
|
|
|
|
Interface,
|
|
|
|
moveCursor,
|
|
|
|
promises,
|
2023-03-08 06:44:54 -05:00
|
|
|
} from "ext:deno_node/_readline.mjs";
|
2023-02-14 11:38:45 -05:00
|
|
|
|
|
|
|
export {
|
|
|
|
clearLine,
|
|
|
|
clearScreenDown,
|
|
|
|
createInterface,
|
|
|
|
cursorTo,
|
|
|
|
emitKeypressEvents,
|
|
|
|
Interface,
|
|
|
|
moveCursor,
|
|
|
|
promises,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default {
|
|
|
|
Interface,
|
|
|
|
clearLine,
|
|
|
|
clearScreenDown,
|
|
|
|
createInterface,
|
|
|
|
cursorTo,
|
|
|
|
emitKeypressEvents,
|
|
|
|
moveCursor,
|
|
|
|
promises,
|
|
|
|
};
|