tsoa-next
    Preparing search index...
    interface ResParameter {
        $ref?: Swagger.BaseSchema<unknown>;
        default?: unknown;
        deprecated: boolean;
        description: string;
        example?: Tsoa.Example[];
        exampleLabels?: (string | undefined)[];
        examples?: Tsoa.Example[];
        headers?: Tsoa.HeaderType;
        in: "res";
        name: string;
        parameterName: string;
        produces?: string[];
        required?: boolean;
        schema?: Tsoa.Type;
        title?: string;
        type: Tsoa.Type;
        validators: Tsoa.Validators;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $ref?: Swagger.BaseSchema<unknown>
    default?: unknown
    deprecated: boolean
    description: string
    example?: Tsoa.Example[]
    exampleLabels?: (string | undefined)[]
    examples?: Tsoa.Example[]
    headers?: Tsoa.HeaderType
    in: "res"
    name: string
    parameterName: string
    produces?: string[]
    required?: boolean
    schema?: Tsoa.Type
    title?: string
    type: Tsoa.Type
    validators: Tsoa.Validators