aboutsummaryrefslogtreecommitdiff
path: root/node_modules/nexe/lib/nexe.d.ts
blob: 7c941bef57ec95f73c81df8fa953ac65b7ef9bb5 (plain)
1
2
3
4
5
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';