@redocly/respect-core
Version:
API testing framework core
19 lines • 552 B
TypeScript
import type { CommandArgs } from '../types';
export type RespectOptions = {
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?: never;
};
export declare function handleRun({ argv, collectSpecData }: CommandArgs<RespectOptions>): Promise<void>;
//# sourceMappingURL=run.d.ts.map