UNPKG

nexe

Version:

Create a single executable out of your Node.js application

6 lines (5 loc) 301 B
import { NexeCompiler } from './compiler'; import { NexeOptions } from './options'; declare function compile(compilerOptions?: Partial<NexeOptions>, callback?: (err: Error | null) => void): Promise<void>; export { compile, NexeCompiler }; export { argv, version, NexeOptions, help } from './options';