Interface DocsConfig

interface DocsConfig {
    consumes?: string[];
    disabled?: boolean;
    examples?: Record<string, ExampleObject | ReferenceObject>;
    host?: ServerObject;
    license?: string | LicenseObject;
    options?: DocsOptions;
    path?: string;
    responses?: BaseResponseUtil;
    schemas?: Record<string, ReferenceObject | SchemaObject>;
    security?: BaseAuthUtil;
    tags?: DocsTag[];
    title?: string;
    version?: string;
}

Properties

consumes?: string[]
disabled?: boolean

Disable docs routes.

examples?: Record<string, ExampleObject | ReferenceObject>
host?: ServerObject
license?: string | LicenseObject
options?: DocsOptions
path?: string
responses?: BaseResponseUtil
schemas?: Record<string, ReferenceObject | SchemaObject>
security?: BaseAuthUtil
tags?: DocsTag[]
title?: string
version?: string