diff --git a/src/models.ts b/src/models.ts index 8be1d04..4650f44 100644 --- a/src/models.ts +++ b/src/models.ts @@ -1,7 +1,16 @@ import React from 'react' import type { RenderResult as TLRenderResult } from '@testing-library/react' -export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'OPTIONS' +export type HttpMethod = + | 'GET' + | 'POST' + | 'PUT' + | 'PATCH' + | 'DELETE' + | 'OPTIONS' + | 'HEAD' + | 'CONNECT' + | 'TRACE' export interface WrapRequest extends Partial { _bodyInit?: string