From 2024386fb36cec3b60422307f5ef03d32969a785 Mon Sep 17 00:00:00 2001 From: David Reed Date: Sat, 11 Feb 2023 13:24:47 -0500 Subject: [PATCH] export config typedef --- lib/index.d.cts | 2 ++ src/global.d.ts | 2 +- src/uv.d.ts => uv.d.ts | 0 3 files changed, 3 insertions(+), 1 deletion(-) rename src/uv.d.ts => uv.d.ts (100%) diff --git a/lib/index.d.cts b/lib/index.d.cts index 93a7c61..41d184d 100644 --- a/lib/index.d.cts +++ b/lib/index.d.cts @@ -1,3 +1,5 @@ declare const uvPath: string; export { uvPath }; + +export * from '../uv'; diff --git a/src/global.d.ts b/src/global.d.ts index c2f71e2..b7603b1 100644 --- a/src/global.d.ts +++ b/src/global.d.ts @@ -1 +1 @@ -declare const __uv$config: import('./uv').UVConfig; +declare const __uv$config: import('../uv').UVConfig; diff --git a/src/uv.d.ts b/uv.d.ts similarity index 100% rename from src/uv.d.ts rename to uv.d.ts