/**
 * Common HTTP methods, but either all upper case or all lower case.
 */
export type HTTPMethods = 'DELETE' | 'delete' | 'GET' | 'get' | 'PATCH' | 'patch' | 'POST' | 'post' | 'PUT' | 'put';
