fix uv jsdoc imports

This commit is contained in:
David Reed 2023-02-18 11:30:50 -05:00
parent 2024386fb3
commit c523f37d9e
No known key found for this signature in database
GPG key ID: 2211691D8A1EE72F
2 changed files with 4 additions and 4 deletions

View file

@ -1,15 +1,15 @@
/** /**
* @type {import('./uv').UltravioletCtor} * @type {import('../uv').UltravioletCtor}
*/ */
const Ultraviolet = self.Ultraviolet; const Ultraviolet = self.Ultraviolet;
/** /**
* @type {import('./uv').UVClientCtor} * @type {import('../uv').UVClientCtor}
*/ */
const UVClient = self.UVClient; const UVClient = self.UVClient;
/** /**
* @type {import('./uv').UVConfig} * @type {import('../uv').UVConfig}
*/ */
const __uv$config = self.__uv$config; const __uv$config = self.__uv$config;

View file

@ -3,7 +3,7 @@
// This is to allow us to produce a generic bundle with no hard-coded paths. // This is to allow us to produce a generic bundle with no hard-coded paths.
/** /**
* @type {import('./uv').UltravioletCtor} * @type {import('../uv').UltravioletCtor}
*/ */
const Ultraviolet = self.Ultraviolet; const Ultraviolet = self.Ultraviolet;