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/download.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 node_modules/nexe/lib/steps/download.d.ts (limited to 'node_modules/nexe/lib/steps/download.d.ts') diff --git a/node_modules/nexe/lib/steps/download.d.ts b/node_modules/nexe/lib/steps/download.d.ts new file mode 100644 index 0000000..50c81ed --- /dev/null +++ b/node_modules/nexe/lib/steps/download.d.ts @@ -0,0 +1,7 @@ +import { NexeCompiler } from '../compiler'; +/** + * Downloads the node source to the configured temporary directory + * @param {*} compiler + * @param {*} next + */ +export default function downloadNode(compiler: NexeCompiler, next: () => Promise): Promise; -- cgit