@redocly/cli
Version:
[@Redocly](https://redocly.com) CLI is your all-in-one OpenAPI utility. It builds, manages, improves, and quality-checks your OpenAPI descriptions, all of which comes in handy for various phases of the API Lifecycle. Create your own rulesets to make API g
21 lines • 641 B
TypeScript
import { type CommandArgs } from '../../wrapper';
export type RespectArgv = {
files: string[];
input?: string;
server?: string;
workflow?: string[];
skip?: string[];
verbose?: boolean;
'har-output'?: string;
'json-output'?: string;
'client-cert'?: string;
'client-key'?: string;
'ca-cert'?: string;
'max-steps': number;
severity?: string;
config?: string;
'max-fetch-timeout': number;
'execution-timeout': number;
};
export declare function handleRespect({ argv, config, version, collectSpecData, }: CommandArgs<RespectArgv>): Promise<void>;
//# sourceMappingURL=index.d.ts.map