@villedemontreal/scripting
Version:
Scripting core utilities
14 lines • 340 B
TypeScript
/**
* Global Options interface. Those are always possible, for any script.
*
* Most of them are provided out-of-the-box by Caporal.
*/
export interface IGlobalOptions {
silent?: boolean;
v?: boolean;
verbose?: boolean;
quiet?: boolean;
color?: boolean;
nc?: boolean;
}
//# sourceMappingURL=globalOptions.d.ts.map