@dvcol/common-utils
Version:
Typescript library for common utility functions and constants
15 lines (13 loc) • 376 B
TypeScript
declare const HttpMethod: {
readonly GET: "GET";
readonly HEAD: "HEAD";
readonly POST: "POST";
readonly PUT: "PUT";
readonly PATCH: "PATCH";
readonly DELETE: "DELETE";
readonly CONNECT: "CONNECT";
readonly OPTIONS: "OPTIONS";
readonly TRACE: "TRACE";
};
type HttpMethods = keyof typeof HttpMethod;
export { HttpMethod, type HttpMethods };