« get me outta code hell

index.js « dialogs « ui - tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
path: root/ui/dialogs/index.js
blob: 5cb9f0420a09c1f1c35530a28f2f09e7fe0c5102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Import mapping:
//
//   controls, presentation, primitives ->
//     CancelDialog
//     ConfirmDialog
//
//     Dialog -> OpenFileDialog
//     FilePickerForm -> OpenFileDialog
//

export {default as CancelDialog} from './CancelDialog.js'
export {default as ConfirmDialog} from './ConfirmDialog.js'
export {default as Dialog} from './Dialog.js'
export {default as FilePickerForm} from './FilePickerForm.js'
export {default as OpenFileDialog} from './OpenFileDialog.js'