UNPKG

@redocly/cli

Version:

[@Redocly](https://redocly.com) CLI is your all-in-one API documentation utility. It builds, manages, improves, and quality-checks your API descriptions, all of which comes in handy for various phases of the API Lifecycle. Create your own rulesets to make

27 lines 763 B
import { type CommandArgs } from '../../wrapper'; export type MtlsConfig = { [domain: string]: { clientCert?: string; clientKey?: string; caCert?: string; }; }; export type RespectArgv = { files: string[]; input?: string; server?: string; workflow?: string[]; skip?: string[]; verbose?: boolean; 'har-output'?: string; 'json-output'?: string; mtls?: MtlsConfig; 'max-steps': number; severity?: string; config?: string; 'max-fetch-timeout': number; 'execution-timeout': number; 'no-secrets-masking': boolean; }; export declare function handleRespect({ argv, config, version, collectSpecData, }: CommandArgs<RespectArgv>): Promise<void>; //# sourceMappingURL=index.d.ts.map