Documentation
    Preparing search index...

    Composition error for an operation.

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

    Properties

    messages: string[]

    Error messages describing the failure.

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

    HTTP method of the failed operation.

    operation: () => OpenApi.IOperation

    Returns source OpenApi.IOperation.

    path: string

    Path of the failed operation.

    route: () => IHttpMigrateRoute | undefined

    Returns source route. Undefined if error occurred at migration level.