diff --git a/src/endpoint.ts b/src/endpoint.ts index 4f874e9..3c9469f 100644 --- a/src/endpoint.ts +++ b/src/endpoint.ts @@ -1,5 +1,6 @@ export enum Method { + HEAD = 'HEAD', GET = 'GET', PUT = 'PUT', POST = 'POST', @@ -11,4 +12,4 @@ export type Endpoint

= Readonly<{ method: Method; url: string | ((params: P) => string); headers?: Record; -}> \ No newline at end of file +}>