From 3ad1eab520cb707684ac5de09045f1fb6e9fc9b3 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 25 May 2021 20:28:02 +0700 Subject: [PATCH] Fix missing `Options` TypeScript type Fixes #347 --- source/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/index.ts b/source/index.ts index 531a34f9..14ed35f0 100644 --- a/source/index.ts +++ b/source/index.ts @@ -27,5 +27,7 @@ const ky = createInstance(); export default ky; +export {Options}; + export {HTTPError} from './errors/HTTPError.js'; export {TimeoutError} from './errors/TimeoutError.js';