1 |
|
2 | import getopt from './getopt';
|
3 | import read from './read';
|
4 | import readLine from './readLine';
|
5 | import ProgressBar from './ProgressBar';
|
6 | import ask from './ask';
|
7 | declare const stdio: {
|
8 | getopt: (config: import("./getopt").Config, command?: string[], options?: import("./getopt").Options | undefined) => import("./getopt").GetoptResponse | null;
|
9 | read: (lineHandler: import("./read").LineHandler, input?: NodeJS.ReadableStream) => Promise<void>;
|
10 | readLine: typeof readLine;
|
11 | ask: typeof ask;
|
12 | ProgressBar: typeof ProgressBar;
|
13 | };
|
14 | export default stdio;
|
15 | export { getopt, read, readLine, ask, ProgressBar };
|