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

24 lines 635 B
import type { VerifyConfigOptions } from '../../types.js'; export type BuildDocsOptions = { watch?: boolean; output?: string; title?: string; disableGoogleFont?: boolean; port?: number; templateFileName?: string; templateOptions?: any; redocOptions?: any; redocCurrentVersion: string; }; export type BuildDocsArgv = { api: string; o: string; title?: string; disableGoogleFont?: boolean; template?: string; templateOptions: Record<string, any>; theme: { openapi: string | Record<string, unknown>; }; } & VerifyConfigOptions; //# sourceMappingURL=types.d.ts.map