HttpMethod.d.ts 77 B

12345
  1. declare enum HttpMethod {
  2. GET = 0,
  3. POST = 1
  4. }
  5. export { HttpMethod };