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 (11 loc) 505 B
import type { CommandArgs } from '../wrapper'; import type { VerifyConfigOptions } from '../types'; export type JoinOptions = { 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<JoinOptions>): Promise<void>;