This commit is contained in:
David Reed 2022-12-03 16:28:19 -05:00
parent 06580d90b7
commit 63516b3217
No known key found for this signature in database
GPG key ID: 2211691D8A1EE72F
2 changed files with 7 additions and 7 deletions

View file

@ -1,32 +1,32 @@
/** /**
* @type {import('./uv').UltravioletCtor} * @type {import('./uv').UltravioletCtor}
*/ */
const Ultraviolet = globalThis.Ultraviolet; const Ultraviolet = self.Ultraviolet;
/** /**
* @type {import('./uv').UVClientCtor} * @type {import('./uv').UVClientCtor}
*/ */
const UVClient = globalThis.UVClient; const UVClient = self.UVClient;
/** /**
* @type {import('./uv').UVConfig} * @type {import('./uv').UVConfig}
*/ */
const __uv$config = globalThis.__uv$config; const __uv$config = self.__uv$config;
/** /**
* @type {import('@tomphttp/bare-client').BareManifest} * @type {import('@tomphttp/bare-client').BareManifest}
*/ */
const __uv$bareData = globalThis.__uv$bareData; const __uv$bareData = self.__uv$bareData;
/** /**
* @type {string} * @type {string}
*/ */
const __uv$bareURL = globalThis.__uv$bareURL; const __uv$bareURL = self.__uv$bareURL;
/** /**
* @type {string} * @type {string}
*/ */
const __uv$cookies = globalThis.__uv$cookies; const __uv$cookies = self.__uv$cookies;
if ( if (
typeof __uv$bareData !== 'object' || typeof __uv$bareData !== 'object' ||

View file

@ -5,7 +5,7 @@
/** /**
* @type {import('./uv').UltravioletCtor} * @type {import('./uv').UltravioletCtor}
*/ */
const Ultraviolet = globalThis.Ultraviolet; const Ultraviolet = self.Ultraviolet;
const cspHeaders = [ const cspHeaders = [
'cross-origin-embedder-policy', 'cross-origin-embedder-policy',