UNPKG

@donmccurdy/caporal

Version:

A full-featured framework for building command line applications (cli) with node.js

15 lines (14 loc) 389 B
/** * A process mock for the web * * @packageDocumentation * @internal */ export declare const version: string; export declare const argv: string[]; export declare const execArgv: any[]; export declare const exitCode = 0; export declare const fake = true; export declare const on: () => void; export declare const once: () => void; export declare const exit: (code?: number) => void;