Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Support for more HTTP Request Methods #1

Open
adam-rocska opened this issue Apr 1, 2023 · 0 comments
Open

Support for more HTTP Request Methods #1

adam-rocska opened this issue Apr 1, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@adam-rocska
Copy link
Member

expand capabilities for head, patch, and others for nice to have UX and dev-x features.

reminder:

const httpMethods = ['GET', 'POST', 'PUT', 'DELETE'] as const;
export type HttpMethod = (typeof httpMethods)[number];

export const isHttpMethod = (method: string): method is HttpMethod =>
  httpMethods.includes(method as HttpMethod);
@adam-rocska adam-rocska added the enhancement New feature or request label Apr 1, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant