tsoa-next
    Preparing search index...

    Interface Method

    interface Method {
        consumes?: string;
        deprecated?: boolean;
        description?: string;
        extensions: Tsoa.Extension[];
        isHidden: boolean;
        method: "options" | "get" | "post" | "put" | "delete" | "patch" | "head";
        name: string;
        operationId?: string;
        parameters: Tsoa.Parameter[];
        path: string;
        produces?: string[];
        responses: Tsoa.Response[];
        security: Tsoa.Security[];
        successStatus?: number;
        summary?: string;
        tags?: string[];
        type: Tsoa.Type;
    }
    Index

    Properties

    consumes?: string
    deprecated?: boolean
    description?: string
    extensions: Tsoa.Extension[]
    isHidden: boolean
    method: "options" | "get" | "post" | "put" | "delete" | "patch" | "head"
    name: string
    operationId?: string
    parameters: Tsoa.Parameter[]
    path: string
    produces?: string[]
    responses: Tsoa.Response[]
    security: Tsoa.Security[]
    successStatus?: number
    summary?: string
    tags?: string[]
    type: Tsoa.Type