From b777938cab1a34ec594dcae85f436f8a14543736 Mon Sep 17 00:00:00 2001 From: David Reed Date: Sat, 18 Feb 2023 12:09:24 -0500 Subject: [PATCH] fix types again --- uv.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uv.d.ts b/uv.d.ts index 165ed38..b66bd7a 100644 --- a/uv.d.ts +++ b/uv.d.ts @@ -1,5 +1,5 @@ -const Ultraviolet: typeof import('./rewrite/index').default; -const UVClient: typeof import('./client/index').default; +const Ultraviolet: typeof import('./src/rewrite/index').default; +const UVClient: typeof import('./src/client/index').default; export type UltravioletCtor = typeof Ultraviolet; export type UVClientCtor = typeof UVClient;