@openapi-qraft/cli
Version:
CLI for generating typed TanStack Query React Hooks and services from OpenAPI Document, improving type safety in React apps
15 lines • 507 B
TypeScript
import { ParseOptions } from 'commander';
export declare function main(processArgv: string[], processArgvParseOptions?: ParseOptions): Promise<void>;
/**
* Extracts multiple `--plugin <name>` options from `argv`
* and returns both the filtered `argv` and the extracted plugins list.
*/
export declare function extractArgvPluginOptions(argv: string[]): {
argv: string[];
plugins?: undefined;
} | {
argv: string[];
plugins: string[];
};
//# sourceMappingURL=bin.d.ts.map