UNPKG

@redocly/portal-plugin-async-api

Version:

Async API plugin for Redocly products

27 lines (26 loc) 773 B
import type { FromSchema } from 'json-schema-to-ts'; export declare const asyncApiDocsConfigSchema: { readonly type: "object"; readonly properties: { readonly schemaId: { readonly type: "string"; }; readonly hideInfo: { readonly type: "boolean"; }; readonly hideOperations: { readonly type: "boolean"; }; readonly hideServers: { readonly type: "boolean"; }; readonly hideMessages: { readonly type: "boolean"; }; readonly hideSchemas: { readonly type: "boolean"; }; }; readonly additionalProperties: false; }; export type AsyncApiDocsSettings = FromSchema<typeof asyncApiDocsConfigSchema>;