UNPKG

@creamapi/cream

Version:

Concise REST API Maker - An extension library for express to create REST APIs faster

10 lines (9 loc) 167 B
/** * A simple enumerator of supported HTTP methods */ export declare enum HttpMethod { GET = "GET", POST = "POST", DELETE = "DELETE", PUT = "PUT" }