@valon-technologies/gestalt
    Preparing search index...

    Interface PublicMethodHttp

    interface PublicMethodHttp {
        verb: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
        path: string;
        body: string;
        pathFields: readonly { name: string; jsonName: string }[];
        queryFields: readonly { name: string; jsonName: string }[];
    }
    Index

    Properties

    verb: "POST" | "GET" | "PUT" | "PATCH" | "DELETE"
    path: string
    body: string
    pathFields: readonly { name: string; jsonName: string }[]
    queryFields: readonly { name: string; jsonName: string }[]