From eea1607fca551dad4de86144b88fcbb7ffa720aa Mon Sep 17 00:00:00 2001 From: TonyRL Date: Mon, 4 Mar 2024 16:21:13 +0000 Subject: [PATCH] fix: add type exports for got --- lib/utils/got.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils/got.ts b/lib/utils/got.ts index cd766f3f0..5fb000c5e 100644 --- a/lib/utils/got.ts +++ b/lib/utils/got.ts @@ -66,3 +66,4 @@ const custom: typeof got & { custom.all = (list) => Promise.all(list); export default custom; +export type { Response, NormalizedOptions, Options } from 'got';