UNPKG

9s-fe-core

Version:

Core functionalities for authentication, configuration, and repository management.

11 lines (10 loc) 218 B
export declare enum HttpMethod { GET = "GET", PUT = "PUT", POST = "POST", DELETE = "DELETE", PATCH = "PATCH" } export declare const HttpMethodDetail: { fromString(value: string): HttpMethod; };