Documentation
    Preparing search index...

    Migration error for an operation.

    interface IError {
        messages: string[];
        method: "get" | "post" | "put" | "delete" | "head" | "patch" | "query";
        operation: () => OpenApi.IOperation;
        path: string;
    }
    Index

    Properties

    messages: string[]

    Error messages.

    method: "get" | "post" | "put" | "delete" | "head" | "patch" | "query"

    HTTP method.

    operation: () => OpenApi.IOperation

    Returns source operation.

    path: string

    Operation path.