UNPKG

@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

12 lines 544 B
import type { CommandArgs } from '../wrapper.js'; import type { VerifyConfigOptions } from '../types.js'; export type JoinArgv = { apis: string[]; 'prefix-tags-with-info-prop'?: string; 'prefix-tags-with-filename'?: boolean; 'prefix-components-with-info-prop'?: string; 'without-x-tag-groups'?: boolean; output?: string; } & VerifyConfigOptions; export declare function handleJoin({ argv, config, version: packageVersion, collectSpecData, }: CommandArgs<JoinArgv>): Promise<undefined>; //# sourceMappingURL=join.d.ts.map