esmodule-builder
Version:
ECMAScript-Module (ES Module) builder.
12 lines (11 loc) • 325 B
text/typescript
declare type Program = {
configFilePath: string;
logLevel?: string;
};
declare function processCommandLine(args: string[]): Program;
declare function run(program: Program): Promise<boolean>;
declare const _default: {
processCommandLine: typeof processCommandLine;
run: typeof run;
};
export default _default;