UNPKG

lib-curses

Version:

Simple node.js library for work with console

30 lines (28 loc) 874 B
import { addch } from './helpers/addch.helper'; import { clearLine } from './helpers/clear_line.helper'; import { clearScreen } from './helpers/clear_screen.helper'; import { getch } from './helpers/getch.helper'; import { hideCursor } from './helpers/hide_сursor.helper'; import { initScreen } from './helpers/init_screen.helper'; import { input } from './helpers/input.helper'; import { inputch } from './helpers/inputch.helper'; import { loop } from './helpers/loop.helper'; import { position } from './helpers/position.helper'; import { print } from './helpers/print.helper'; import { showCursor } from './helpers/show_сursor.helper'; import { wait } from './helpers/wait.helper'; export { addch, clearLine, clearScreen, getch, hideCursor, initScreen, input, inputch, loop, position, print, showCursor, wait, };