erest
    Preparing search index...

    Interface APICommon<T>

    interface APICommon<T = DEFAULT_HANDLER> {
        description?: string;
        handler?: T;
        method: "get" | "post" | "put" | "delete" | "patch";
        path: string;
        response?: TYPE_RESPONSE;
        title: string;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    description?: string
    handler?: T
    method: "get" | "post" | "put" | "delete" | "patch"
    path: string
    response?: TYPE_RESPONSE
    title: string