From d25e11bee6ca5ca523884da132d18e1400e077b9 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 24 Aug 2021 14:41:48 +0200 Subject: Initial commit --- node_modules/nexe/lib/steps/cli.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 node_modules/nexe/lib/steps/cli.d.ts (limited to 'node_modules/nexe/lib/steps/cli.d.ts') diff --git a/node_modules/nexe/lib/steps/cli.d.ts b/node_modules/nexe/lib/steps/cli.d.ts new file mode 100644 index 0000000..02b796a --- /dev/null +++ b/node_modules/nexe/lib/steps/cli.d.ts @@ -0,0 +1,12 @@ +import { NexeCompiler } from '../compiler'; +/** + * The "cli" step detects the appropriate input. If no input options are passed, + * the package.json#main file is used. + * After all the build steps have run, the output (the executable) is written to a file or piped to stdout. + * + * Configuration: + * + * @param {*} compiler + * @param {*} next + */ +export default function cli(compiler: NexeCompiler, next: () => Promise): Promise; -- cgit