14 lines
334 B
TypeScript
14 lines
334 B
TypeScript
/**
|
|
* Options received from the command line (Commander).
|
|
* Decoupled from the CLI framework to allow use from a backend or other entry points.
|
|
*/
|
|
export interface CliOptions {
|
|
input: string;
|
|
output: string;
|
|
templates: string;
|
|
skipInstall?: boolean;
|
|
dryRun?: boolean;
|
|
selectEndpoints?: boolean;
|
|
skipLint?: boolean;
|
|
}
|