Interface APICommon<T>

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

Type Parameters

Hierarchy (view full)

Properties

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

Generated using TypeDoc