For example, `globalThis.close()` raises a type error. (`window.close()` does not raise a type error, but it does raise a lint error.) ```ts globalThis.close(); // deno-ts: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. window.close(); // deno-lint: For compatibility between the Window context and the Web Workers, calling Web APIs via `window` is disallowed Instead, call this API via `self`, `globalThis`, or no extra prefix ``` I looked this up in the script below and it seems that I found some similar issues. <details> <summary>check.ts</summary> <div> ```ts const denoGlobal = [...inspect(globalThis, "globalThis", new Set())].sort(); for (const l of denoGlobal) { // avoid syntax error... if (l === "globalThis.RegExp.$'") { console.log(`globalThis.RegExp["$'"]`); } else if (l === "globalThis.RegExp.$`") { console.log('globalThis.RegExp["$`"]'); } else if (l === "globalThis.Deno.SeekMode.0") { console.log("globalThis.Deno.SeekMode[0]"); } else if (l === "globalThis.Deno.SeekMode.1") { console.log("globalThis.Deno.SeekMode[1]"); } else if (l === "globalThis.Deno.SeekMode.2") { console.log("globalThis.Deno.SeekMode[2]"); } else { console.log(l); } } function inspect(obj: any, path: string, res: Set<string>) { for (const key of Object.getOwnPropertyNames(obj).sort()) { const keyPath = path ? `${path}.${key}` : key; // avoid circular reference if (keyPath === "globalThis.window") { continue; } if (keyPath === "globalThis.self") { continue; } if (keyPath === "globalThis.globalThis") { continue; } if (typeof obj[key] === "object" && obj[key]) { inspect(obj[key], keyPath, res); getPrototypeKey(obj[key], keyPath, res); } else { res.add(keyPath); if (typeof obj[key] === "function") { Object.getOwnPropertyNames(obj[key]).filter((v) => !["length", "name", "prototype", "arguments", "caller"].includes(v) ).forEach((v) => res.add(`${keyPath}.${v}`)); try { const { prototype } = obj[key]; if (prototype) { const name = prototype.constructor.name || `[[${keyPath}]]`; Object.getOwnPropertyNames(prototype) .filter((v) => v !== "constructor") .forEach((v) => res.add(`${path}.${name}.prototype.${v}`)); getPrototypeKey(prototype, `${keyPath}.prototype`, res); } } catch (error) { console.error(error); } } } } return res; } function getPrototypeKey(obj: any, path: string, res: Set<string>) { if (obj === null || typeof obj !== "object") { return res; } const prototype = Object.getPrototypeOf(obj); if (prototype === null || typeof prototype !== "object") { return res; } if (prototype.constructor === Object) { return res; } if (prototype.constructor === Array) { return res; } Object.getOwnPropertyNames(prototype).forEach((v) => res.add(`${path}.${v}`)); getPrototypeKey(prototype, path, res); return res; } ``` </div> </details> ```shell $ deno --version deno 1.17.3 (release, x86_64-pc-windows-msvc) v8 9.7.106.15 typescript 4.5.2 $ deno run --allow-read ./check.ts > ./tmp.ts $ deno cache --unstable ./tmp.ts 2> info.txt # output typescript diagnostics ``` <details> <summary>output (tmp.ts)</summary> <div> ```ts globalThis.AbortController globalThis.AbortController.prototype.abort globalThis.AbortController.prototype.signal globalThis.AbortSignal globalThis.AbortSignal.abort globalThis.AbortSignal.prototype.aborted globalThis.AbortSignal.prototype.addEventListener globalThis.AbortSignal.prototype.constructor globalThis.AbortSignal.prototype.dispatchEvent globalThis.AbortSignal.prototype.getParent globalThis.AbortSignal.prototype.onabort globalThis.AbortSignal.prototype.reason globalThis.AbortSignal.prototype.removeEventListener globalThis.AbortSignal.prototype.throwIfAborted globalThis.AggregateError globalThis.AggregateError.prototype.constructor globalThis.AggregateError.prototype.message globalThis.AggregateError.prototype.name globalThis.AggregateError.prototype.toString globalThis.Array globalThis.Array.from globalThis.Array.isArray globalThis.Array.of globalThis.Array.prototype.at globalThis.Array.prototype.concat globalThis.Array.prototype.copyWithin globalThis.Array.prototype.entries globalThis.Array.prototype.every globalThis.Array.prototype.fill globalThis.Array.prototype.filter globalThis.Array.prototype.find globalThis.Array.prototype.findIndex globalThis.Array.prototype.findLast globalThis.Array.prototype.findLastIndex globalThis.Array.prototype.flat globalThis.Array.prototype.flatMap globalThis.Array.prototype.forEach globalThis.Array.prototype.includes globalThis.Array.prototype.indexOf globalThis.Array.prototype.join globalThis.Array.prototype.keys globalThis.Array.prototype.lastIndexOf globalThis.Array.prototype.length globalThis.Array.prototype.map globalThis.Array.prototype.pop globalThis.Array.prototype.push globalThis.Array.prototype.reduce globalThis.Array.prototype.reduceRight globalThis.Array.prototype.reverse globalThis.Array.prototype.shift globalThis.Array.prototype.slice globalThis.Array.prototype.some globalThis.Array.prototype.sort globalThis.Array.prototype.splice globalThis.Array.prototype.toLocaleString globalThis.Array.prototype.toString globalThis.Array.prototype.unshift globalThis.Array.prototype.values globalThis.ArrayBuffer globalThis.ArrayBuffer.isView globalThis.ArrayBuffer.prototype.byteLength globalThis.ArrayBuffer.prototype.slice globalThis.Atomics.add globalThis.Atomics.and globalThis.Atomics.compareExchange globalThis.Atomics.exchange globalThis.Atomics.isLockFree globalThis.Atomics.load globalThis.Atomics.notify globalThis.Atomics.or globalThis.Atomics.store globalThis.Atomics.sub globalThis.Atomics.wait globalThis.Atomics.waitAsync globalThis.Atomics.xor globalThis.BigInt globalThis.BigInt.asIntN globalThis.BigInt.asUintN globalThis.BigInt.prototype.toLocaleString globalThis.BigInt.prototype.toString globalThis.BigInt.prototype.valueOf globalThis.BigInt64Array globalThis.BigInt64Array.BYTES_PER_ELEMENT globalThis.BigInt64Array.prototype.BYTES_PER_ELEMENT globalThis.BigInt64Array.prototype.at globalThis.BigInt64Array.prototype.buffer globalThis.BigInt64Array.prototype.byteLength globalThis.BigInt64Array.prototype.byteOffset globalThis.BigInt64Array.prototype.constructor globalThis.BigInt64Array.prototype.copyWithin globalThis.BigInt64Array.prototype.entries globalThis.BigInt64Array.prototype.every globalThis.BigInt64Array.prototype.fill globalThis.BigInt64Array.prototype.filter globalThis.BigInt64Array.prototype.find globalThis.BigInt64Array.prototype.findIndex globalThis.BigInt64Array.prototype.findLast globalThis.BigInt64Array.prototype.findLastIndex globalThis.BigInt64Array.prototype.forEach globalThis.BigInt64Array.prototype.includes globalThis.BigInt64Array.prototype.indexOf globalThis.BigInt64Array.prototype.join globalThis.BigInt64Array.prototype.keys globalThis.BigInt64Array.prototype.lastIndexOf globalThis.BigInt64Array.prototype.length globalThis.BigInt64Array.prototype.map globalThis.BigInt64Array.prototype.reduce globalThis.BigInt64Array.prototype.reduceRight globalThis.BigInt64Array.prototype.reverse globalThis.BigInt64Array.prototype.set globalThis.BigInt64Array.prototype.slice globalThis.BigInt64Array.prototype.some globalThis.BigInt64Array.prototype.sort globalThis.BigInt64Array.prototype.subarray globalThis.BigInt64Array.prototype.toLocaleString globalThis.BigInt64Array.prototype.toString globalThis.BigInt64Array.prototype.values globalThis.BigUint64Array globalThis.BigUint64Array.BYTES_PER_ELEMENT globalThis.BigUint64Array.prototype.BYTES_PER_ELEMENT globalThis.BigUint64Array.prototype.at globalThis.BigUint64Array.prototype.buffer globalThis.BigUint64Array.prototype.byteLength globalThis.BigUint64Array.prototype.byteOffset globalThis.BigUint64Array.prototype.constructor globalThis.BigUint64Array.prototype.copyWithin globalThis.BigUint64Array.prototype.entries globalThis.BigUint64Array.prototype.every globalThis.BigUint64Array.prototype.fill globalThis.BigUint64Array.prototype.filter globalThis.BigUint64Array.prototype.find globalThis.BigUint64Array.prototype.findIndex globalThis.BigUint64Array.prototype.findLast globalThis.BigUint64Array.prototype.findLastIndex globalThis.BigUint64Array.prototype.forEach globalThis.BigUint64Array.prototype.includes globalThis.BigUint64Array.prototype.indexOf globalThis.BigUint64Array.prototype.join globalThis.BigUint64Array.prototype.keys globalThis.BigUint64Array.prototype.lastIndexOf globalThis.BigUint64Array.prototype.length globalThis.BigUint64Array.prototype.map globalThis.BigUint64Array.prototype.reduce globalThis.BigUint64Array.prototype.reduceRight globalThis.BigUint64Array.prototype.reverse globalThis.BigUint64Array.prototype.set globalThis.BigUint64Array.prototype.slice globalThis.BigUint64Array.prototype.some globalThis.BigUint64Array.prototype.sort globalThis.BigUint64Array.prototype.subarray globalThis.BigUint64Array.prototype.toLocaleString globalThis.BigUint64Array.prototype.toString globalThis.BigUint64Array.prototype.values globalThis.Blob globalThis.Blob.prototype.arrayBuffer globalThis.Blob.prototype.size globalThis.Blob.prototype.slice globalThis.Blob.prototype.stream globalThis.Blob.prototype.text globalThis.Blob.prototype.type globalThis.Boolean globalThis.Boolean.prototype.toString globalThis.Boolean.prototype.valueOf globalThis.ByteLengthQueuingStrategy globalThis.ByteLengthQueuingStrategy.prototype.highWaterMark globalThis.ByteLengthQueuingStrategy.prototype.size globalThis.CloseEvent globalThis.CloseEvent.prototype.AT_TARGET globalThis.CloseEvent.prototype.BUBBLING_PHASE globalThis.CloseEvent.prototype.CAPTURING_PHASE globalThis.CloseEvent.prototype.NONE globalThis.CloseEvent.prototype.bubbles globalThis.CloseEvent.prototype.cancelBubble globalThis.CloseEvent.prototype.cancelable globalThis.CloseEvent.prototype.code globalThis.CloseEvent.prototype.composed globalThis.CloseEvent.prototype.composedPath globalThis.CloseEvent.prototype.constructor globalThis.CloseEvent.prototype.currentTarget globalThis.CloseEvent.prototype.defaultPrevented globalThis.CloseEvent.prototype.eventPhase globalThis.CloseEvent.prototype.initialized globalThis.CloseEvent.prototype.preventDefault globalThis.CloseEvent.prototype.reason globalThis.CloseEvent.prototype.returnValue globalThis.CloseEvent.prototype.srcElement globalThis.CloseEvent.prototype.stopImmediatePropagation globalThis.CloseEvent.prototype.stopPropagation globalThis.CloseEvent.prototype.target globalThis.CloseEvent.prototype.timeStamp globalThis.CloseEvent.prototype.type globalThis.CloseEvent.prototype.wasClean globalThis.CountQueuingStrategy globalThis.CountQueuingStrategy.prototype.highWaterMark globalThis.CountQueuingStrategy.prototype.size globalThis.Crypto globalThis.Crypto.prototype.getRandomValues globalThis.Crypto.prototype.randomUUID globalThis.Crypto.prototype.subtle globalThis.CryptoKey globalThis.CryptoKey.prototype.algorithm globalThis.CryptoKey.prototype.extractable globalThis.CryptoKey.prototype.type globalThis.CryptoKey.prototype.usages globalThis.CustomEvent globalThis.CustomEvent.prototype.AT_TARGET globalThis.CustomEvent.prototype.BUBBLING_PHASE globalThis.CustomEvent.prototype.CAPTURING_PHASE globalThis.CustomEvent.prototype.NONE globalThis.CustomEvent.prototype.bubbles globalThis.CustomEvent.prototype.cancelBubble globalThis.CustomEvent.prototype.cancelable globalThis.CustomEvent.prototype.composed globalThis.CustomEvent.prototype.composedPath globalThis.CustomEvent.prototype.constructor globalThis.CustomEvent.prototype.currentTarget globalThis.CustomEvent.prototype.defaultPrevented globalThis.CustomEvent.prototype.detail globalThis.CustomEvent.prototype.eventPhase globalThis.CustomEvent.prototype.initialized globalThis.CustomEvent.prototype.preventDefault globalThis.CustomEvent.prototype.returnValue globalThis.CustomEvent.prototype.srcElement globalThis.CustomEvent.prototype.stopImmediatePropagation globalThis.CustomEvent.prototype.stopPropagation globalThis.CustomEvent.prototype.target globalThis.CustomEvent.prototype.timeStamp globalThis.CustomEvent.prototype.type globalThis.DOMException globalThis.DOMException.ABORT_ERR globalThis.DOMException.DATA_CLONE_ERR globalThis.DOMException.DOMSTRING_SIZE_ERR globalThis.DOMException.HIERARCHY_REQUEST_ERR globalThis.DOMException.INDEX_SIZE_ERR globalThis.DOMException.INUSE_ATTRIBUTE_ERR globalThis.DOMException.INVALID_ACCESS_ERR globalThis.DOMException.INVALID_CHARACTER_ERR globalThis.DOMException.INVALID_MODIFICATION_ERR globalThis.DOMException.INVALID_NODE_TYPE_ERR globalThis.DOMException.INVALID_STATE_ERR globalThis.DOMException.NAMESPACE_ERR globalThis.DOMException.NETWORK_ERR globalThis.DOMException.NOT_FOUND_ERR globalThis.DOMException.NOT_SUPPORTED_ERR globalThis.DOMException.NO_DATA_ALLOWED_ERR globalThis.DOMException.NO_MODIFICATION_ALLOWED_ERR globalThis.DOMException.QUOTA_EXCEEDED_ERR globalThis.DOMException.SECURITY_ERR globalThis.DOMException.SYNTAX_ERR globalThis.DOMException.TIMEOUT_ERR globalThis.DOMException.TYPE_MISMATCH_ERR globalThis.DOMException.URL_MISMATCH_ERR globalThis.DOMException.VALIDATION_ERR globalThis.DOMException.WRONG_DOCUMENT_ERR globalThis.DOMException.prototype.ABORT_ERR globalThis.DOMException.prototype.DATA_CLONE_ERR globalThis.DOMException.prototype.DOMSTRING_SIZE_ERR globalThis.DOMException.prototype.HIERARCHY_REQUEST_ERR globalThis.DOMException.prototype.INDEX_SIZE_ERR globalThis.DOMException.prototype.INUSE_ATTRIBUTE_ERR globalThis.DOMException.prototype.INVALID_ACCESS_ERR globalThis.DOMException.prototype.INVALID_CHARACTER_ERR globalThis.DOMException.prototype.INVALID_MODIFICATION_ERR globalThis.DOMException.prototype.INVALID_NODE_TYPE_ERR globalThis.DOMException.prototype.INVALID_STATE_ERR globalThis.DOMException.prototype.NAMESPACE_ERR globalThis.DOMException.prototype.NETWORK_ERR globalThis.DOMException.prototype.NOT_FOUND_ERR globalThis.DOMException.prototype.NOT_SUPPORTED_ERR globalThis.DOMException.prototype.NO_DATA_ALLOWED_ERR globalThis.DOMException.prototype.NO_MODIFICATION_ALLOWED_ERR globalThis.DOMException.prototype.QUOTA_EXCEEDED_ERR globalThis.DOMException.prototype.SECURITY_ERR globalThis.DOMException.prototype.SYNTAX_ERR globalThis.DOMException.prototype.TIMEOUT_ERR globalThis.DOMException.prototype.TYPE_MISMATCH_ERR globalThis.DOMException.prototype.URL_MISMATCH_ERR globalThis.DOMException.prototype.VALIDATION_ERR globalThis.DOMException.prototype.WRONG_DOCUMENT_ERR globalThis.DOMException.prototype.code globalThis.DOMException.prototype.constructor globalThis.DOMException.prototype.message globalThis.DOMException.prototype.name globalThis.DOMException.prototype.toString globalThis.DataView globalThis.DataView.prototype.buffer globalThis.DataView.prototype.byteLength globalThis.DataView.prototype.byteOffset globalThis.DataView.prototype.getBigInt64 globalThis.DataView.prototype.getBigUint64 globalThis.DataView.prototype.getFloat32 globalThis.DataView.prototype.getFloat64 globalThis.DataView.prototype.getInt16 globalThis.DataView.prototype.getInt32 globalThis.DataView.prototype.getInt8 globalThis.DataView.prototype.getUint16 globalThis.DataView.prototype.getUint32 globalThis.DataView.prototype.getUint8 globalThis.DataView.prototype.setBigInt64 globalThis.DataView.prototype.setBigUint64 globalThis.DataView.prototype.setFloat32 globalThis.DataView.prototype.setFloat64 globalThis.DataView.prototype.setInt16 globalThis.DataView.prototype.setInt32 globalThis.DataView.prototype.setInt8 globalThis.DataView.prototype.setUint16 globalThis.DataView.prototype.setUint32 globalThis.DataView.prototype.setUint8 globalThis.Date globalThis.Date.UTC globalThis.Date.now globalThis.Date.parse globalThis.Date.prototype.getDate globalThis.Date.prototype.getDay globalThis.Date.prototype.getFullYear globalThis.Date.prototype.getHours globalThis.Date.prototype.getMilliseconds globalThis.Date.prototype.getMinutes globalThis.Date.prototype.getMonth globalThis.Date.prototype.getSeconds globalThis.Date.prototype.getTime globalThis.Date.prototype.getTimezoneOffset globalThis.Date.prototype.getUTCDate globalThis.Date.prototype.getUTCDay globalThis.Date.prototype.getUTCFullYear globalThis.Date.prototype.getUTCHours globalThis.Date.prototype.getUTCMilliseconds globalThis.Date.prototype.getUTCMinutes globalThis.Date.prototype.getUTCMonth globalThis.Date.prototype.getUTCSeconds globalThis.Date.prototype.getYear globalThis.Date.prototype.setDate globalThis.Date.prototype.setFullYear globalThis.Date.prototype.setHours globalThis.Date.prototype.setMilliseconds globalThis.Date.prototype.setMinutes globalThis.Date.prototype.setMonth globalThis.Date.prototype.setSeconds globalThis.Date.prototype.setTime globalThis.Date.prototype.setUTCDate globalThis.Date.prototype.setUTCFullYear globalThis.Date.prototype.setUTCHours globalThis.Date.prototype.setUTCMilliseconds globalThis.Date.prototype.setUTCMinutes globalThis.Date.prototype.setUTCMonth globalThis.Date.prototype.setUTCSeconds globalThis.Date.prototype.setYear globalThis.Date.prototype.toDateString globalThis.Date.prototype.toGMTString globalThis.Date.prototype.toISOString globalThis.Date.prototype.toJSON globalThis.Date.prototype.toLocaleDateString globalThis.Date.prototype.toLocaleString globalThis.Date.prototype.toLocaleTimeString globalThis.Date.prototype.toString globalThis.Date.prototype.toTimeString globalThis.Date.prototype.toUTCString globalThis.Date.prototype.valueOf globalThis.Deno.Buffer globalThis.Deno.Buffer.prototype.bytes globalThis.Deno.Buffer.prototype.capacity globalThis.Deno.Buffer.prototype.empty globalThis.Deno.Buffer.prototype.grow globalThis.Deno.Buffer.prototype.length globalThis.Deno.Buffer.prototype.read globalThis.Deno.Buffer.prototype.readFrom globalThis.Deno.Buffer.prototype.readFromSync globalThis.Deno.Buffer.prototype.readSync globalThis.Deno.Buffer.prototype.reset globalThis.Deno.Buffer.prototype.truncate globalThis.Deno.Buffer.prototype.write globalThis.Deno.Buffer.prototype.writeSync globalThis.Deno.File globalThis.Deno.File.prototype.close globalThis.Deno.File.prototype.read globalThis.Deno.File.prototype.readSync globalThis.Deno.File.prototype.rid globalThis.Deno.File.prototype.seek globalThis.Deno.File.prototype.seekSync globalThis.Deno.File.prototype.stat globalThis.Deno.File.prototype.statSync globalThis.Deno.File.prototype.truncate globalThis.Deno.File.prototype.truncateSync globalThis.Deno.File.prototype.write globalThis.Deno.File.prototype.writeSync globalThis.Deno.PermissionStatus globalThis.Deno.PermissionStatus.prototype.addEventListener globalThis.Deno.PermissionStatus.prototype.constructor globalThis.Deno.PermissionStatus.prototype.dispatchEvent globalThis.Deno.PermissionStatus.prototype.getParent globalThis.Deno.PermissionStatus.prototype.removeEventListener globalThis.Deno.PermissionStatus.prototype.state globalThis.Deno.Permissions globalThis.Deno.Permissions.prototype.query globalThis.Deno.Permissions.prototype.request globalThis.Deno.Permissions.prototype.revoke globalThis.Deno.Process globalThis.Deno.Process.prototype.close globalThis.Deno.Process.prototype.kill globalThis.Deno.Process.prototype.output globalThis.Deno.Process.prototype.status globalThis.Deno.Process.prototype.stderrOutput globalThis.Deno.SeekMode[0] globalThis.Deno.SeekMode[1] globalThis.Deno.SeekMode[2] globalThis.Deno.SeekMode.Current globalThis.Deno.SeekMode.End globalThis.Deno.SeekMode.Start globalThis.Deno.args.length globalThis.Deno.build.arch globalThis.Deno.build.env globalThis.Deno.build.os globalThis.Deno.build.target globalThis.Deno.build.vendor globalThis.Deno.chdir globalThis.Deno.chmod globalThis.Deno.chmodSync globalThis.Deno.chown globalThis.Deno.chownSync globalThis.Deno.close globalThis.Deno.connect globalThis.Deno.connectTls globalThis.Deno.copy globalThis.Deno.copyFile globalThis.Deno.copyFileSync globalThis.Deno.core.BadResource globalThis.Deno.core.BadResource.prototype.constructor globalThis.Deno.core.BadResource.prototype.message globalThis.Deno.core.BadResource.prototype.name globalThis.Deno.core.BadResource.prototype.toString globalThis.Deno.core.Interrupted globalThis.Deno.core.Interrupted.prototype.constructor globalThis.Deno.core.Interrupted.prototype.message globalThis.Deno.core.Interrupted.prototype.name globalThis.Deno.core.Interrupted.prototype.toString globalThis.Deno.core.callConsole globalThis.Deno.core.close globalThis.Deno.core.createHostObject globalThis.Deno.core.createPrepareStackTrace globalThis.Deno.core.decode globalThis.Deno.core.deserialize globalThis.Deno.core.encode globalThis.Deno.core.evalContext globalThis.Deno.core.getPromiseDetails globalThis.Deno.core.getProxyDetails globalThis.Deno.core.hasTickScheduled globalThis.Deno.core.isProxy globalThis.Deno.core.memoryUsage globalThis.Deno.core.metrics globalThis.Deno.core.opAsync globalThis.Deno.core.opSync globalThis.Deno.core.opcallAsync globalThis.Deno.core.opcallSync globalThis.Deno.core.opresolve globalThis.Deno.core.ops globalThis.Deno.core.print globalThis.Deno.core.read globalThis.Deno.core.refOp globalThis.Deno.core.registerErrorBuilder globalThis.Deno.core.registerErrorClass globalThis.Deno.core.resources globalThis.Deno.core.runMicrotasks globalThis.Deno.core.serialize globalThis.Deno.core.setHasTickScheduled globalThis.Deno.core.setMacrotaskCallback globalThis.Deno.core.setNextTickCallback globalThis.Deno.core.setPromiseRejectCallback globalThis.Deno.core.setUncaughtExceptionCallback globalThis.Deno.core.setWasmStreamingCallback globalThis.Deno.core.shutdown globalThis.Deno.core.syncOpsCache globalThis.Deno.core.tryClose globalThis.Deno.core.unrefOp globalThis.Deno.core.write globalThis.Deno.create globalThis.Deno.createSync globalThis.Deno.customInspect globalThis.Deno.cwd globalThis.Deno.env.delete globalThis.Deno.env.get globalThis.Deno.env.set globalThis.Deno.env.toObject globalThis.Deno.errors.AddrInUse globalThis.Deno.errors.AddrInUse.prototype.constructor globalThis.Deno.errors.AddrInUse.prototype.message globalThis.Deno.errors.AddrInUse.prototype.name globalThis.Deno.errors.AddrInUse.prototype.toString globalThis.Deno.errors.AddrNotAvailable globalThis.Deno.errors.AddrNotAvailable.prototype.constructor globalThis.Deno.errors.AddrNotAvailable.prototype.message globalThis.Deno.errors.AddrNotAvailable.prototype.name globalThis.Deno.errors.AddrNotAvailable.prototype.toString globalThis.Deno.errors.AlreadyExists globalThis.Deno.errors.AlreadyExists.prototype.constructor globalThis.Deno.errors.AlreadyExists.prototype.message globalThis.Deno.errors.AlreadyExists.prototype.name globalThis.Deno.errors.AlreadyExists.prototype.toString globalThis.Deno.errors.BadResource globalThis.Deno.errors.BadResource.prototype.constructor globalThis.Deno.errors.BadResource.prototype.message globalThis.Deno.errors.BadResource.prototype.name globalThis.Deno.errors.BadResource.prototype.toString globalThis.Deno.errors.BrokenPipe globalThis.Deno.errors.BrokenPipe.prototype.constructor globalThis.Deno.errors.BrokenPipe.prototype.message globalThis.Deno.errors.BrokenPipe.prototype.name globalThis.Deno.errors.BrokenPipe.prototype.toString globalThis.Deno.errors.Busy globalThis.Deno.errors.Busy.prototype.constructor globalThis.Deno.errors.Busy.prototype.message globalThis.Deno.errors.Busy.prototype.name globalThis.Deno.errors.Busy.prototype.toString globalThis.Deno.errors.ConnectionAborted globalThis.Deno.errors.ConnectionAborted.prototype.constructor globalThis.Deno.errors.ConnectionAborted.prototype.message globalThis.Deno.errors.ConnectionAborted.prototype.name globalThis.Deno.errors.ConnectionAborted.prototype.toString globalThis.Deno.errors.ConnectionRefused globalThis.Deno.errors.ConnectionRefused.prototype.constructor globalThis.Deno.errors.ConnectionRefused.prototype.message globalThis.Deno.errors.ConnectionRefused.prototype.name globalThis.Deno.errors.ConnectionRefused.prototype.toString globalThis.Deno.errors.ConnectionReset globalThis.Deno.errors.ConnectionReset.prototype.constructor globalThis.Deno.errors.ConnectionReset.prototype.message globalThis.Deno.errors.ConnectionReset.prototype.name globalThis.Deno.errors.ConnectionReset.prototype.toString globalThis.Deno.errors.Http globalThis.Deno.errors.Http.prototype.constructor globalThis.Deno.errors.Http.prototype.message globalThis.Deno.errors.Http.prototype.name globalThis.Deno.errors.Http.prototype.toString globalThis.Deno.errors.Interrupted globalThis.Deno.errors.Interrupted.prototype.constructor globalThis.Deno.errors.Interrupted.prototype.message globalThis.Deno.errors.Interrupted.prototype.name globalThis.Deno.errors.Interrupted.prototype.toString globalThis.Deno.errors.InvalidData globalThis.Deno.errors.InvalidData.prototype.constructor globalThis.Deno.errors.InvalidData.prototype.message globalThis.Deno.errors.InvalidData.prototype.name globalThis.Deno.errors.InvalidData.prototype.toString globalThis.Deno.errors.NotConnected globalThis.Deno.errors.NotConnected.prototype.constructor globalThis.Deno.errors.NotConnected.prototype.message globalThis.Deno.errors.NotConnected.prototype.name globalThis.Deno.errors.NotConnected.prototype.toString globalThis.Deno.errors.NotFound globalThis.Deno.errors.NotFound.prototype.constructor globalThis.Deno.errors.NotFound.prototype.message globalThis.Deno.errors.NotFound.prototype.name globalThis.Deno.errors.NotFound.prototype.toString globalThis.Deno.errors.NotSupported globalThis.Deno.errors.NotSupported.prototype.constructor globalThis.Deno.errors.NotSupported.prototype.message globalThis.Deno.errors.NotSupported.prototype.name globalThis.Deno.errors.NotSupported.prototype.toString globalThis.Deno.errors.PermissionDenied globalThis.Deno.errors.PermissionDenied.prototype.constructor globalThis.Deno.errors.PermissionDenied.prototype.message globalThis.Deno.errors.PermissionDenied.prototype.name globalThis.Deno.errors.PermissionDenied.prototype.toString globalThis.Deno.errors.TimedOut globalThis.Deno.errors.TimedOut.prototype.constructor globalThis.Deno.errors.TimedOut.prototype.message globalThis.Deno.errors.TimedOut.prototype.name globalThis.Deno.errors.TimedOut.prototype.toString globalThis.Deno.errors.UnexpectedEof globalThis.Deno.errors.UnexpectedEof.prototype.constructor globalThis.Deno.errors.UnexpectedEof.prototype.message globalThis.Deno.errors.UnexpectedEof.prototype.name globalThis.Deno.errors.UnexpectedEof.prototype.toString globalThis.Deno.errors.WriteZero globalThis.Deno.errors.WriteZero.prototype.constructor globalThis.Deno.errors.WriteZero.prototype.message globalThis.Deno.errors.WriteZero.prototype.name globalThis.Deno.errors.WriteZero.prototype.toString globalThis.Deno.execPath globalThis.Deno.exit globalThis.Deno.fdatasync globalThis.Deno.fdatasyncSync globalThis.Deno.fstat globalThis.Deno.fstatSync globalThis.Deno.fsync globalThis.Deno.fsyncSync globalThis.Deno.ftruncate globalThis.Deno.ftruncateSync globalThis.Deno.inspect globalThis.Deno.internal globalThis.Deno.isatty globalThis.Deno.iter globalThis.Deno.iter.prototype.constructor globalThis.Deno.iter.prototype.next globalThis.Deno.iter.prototype.return globalThis.Deno.iter.prototype.throw globalThis.Deno.iterSync globalThis.Deno.iterSync.prototype.constructor globalThis.Deno.iterSync.prototype.next globalThis.Deno.iterSync.prototype.return globalThis.Deno.iterSync.prototype.throw globalThis.Deno.kill globalThis.Deno.link globalThis.Deno.linkSync globalThis.Deno.listen globalThis.Deno.listenTls globalThis.Deno.lstat globalThis.Deno.lstatSync globalThis.Deno.mainModule globalThis.Deno.makeTempDir globalThis.Deno.makeTempDirSync globalThis.Deno.makeTempFile globalThis.Deno.makeTempFileSync globalThis.Deno.memoryUsage globalThis.Deno.metrics globalThis.Deno.mkdir globalThis.Deno.mkdirSync globalThis.Deno.noColor globalThis.Deno.open globalThis.Deno.openSync globalThis.Deno.permissions.constructor globalThis.Deno.permissions.query globalThis.Deno.permissions.request globalThis.Deno.permissions.revoke globalThis.Deno.pid globalThis.Deno.ppid globalThis.Deno.read globalThis.Deno.readAll globalThis.Deno.readAllSync globalThis.Deno.readDir globalThis.Deno.readDirSync globalThis.Deno.readFile globalThis.Deno.readFileSync globalThis.Deno.readLink globalThis.Deno.readLinkSync globalThis.Deno.readSync globalThis.Deno.readTextFile globalThis.Deno.readTextFileSync globalThis.Deno.realPath globalThis.Deno.realPathSync globalThis.Deno.remove globalThis.Deno.removeSync globalThis.Deno.rename globalThis.Deno.renameSync globalThis.Deno.resolveDns globalThis.Deno.resources globalThis.Deno.run globalThis.Deno.seek globalThis.Deno.seekSync globalThis.Deno.serveHttp globalThis.Deno.shutdown globalThis.Deno.startTls globalThis.Deno.stat globalThis.Deno.statSync globalThis.Deno.stderr.close globalThis.Deno.stderr.constructor globalThis.Deno.stderr.rid globalThis.Deno.stderr.write globalThis.Deno.stderr.writeSync globalThis.Deno.stdin.close globalThis.Deno.stdin.constructor globalThis.Deno.stdin.read globalThis.Deno.stdin.readSync globalThis.Deno.stdin.rid globalThis.Deno.stdout.close globalThis.Deno.stdout.constructor globalThis.Deno.stdout.rid globalThis.Deno.stdout.write globalThis.Deno.stdout.writeSync globalThis.Deno.symlink globalThis.Deno.symlinkSync globalThis.Deno.test globalThis.Deno.truncate globalThis.Deno.truncateSync globalThis.Deno.upgradeWebSocket globalThis.Deno.version.deno globalThis.Deno.version.typescript globalThis.Deno.version.v8 globalThis.Deno.watchFs globalThis.Deno.write globalThis.Deno.writeAll globalThis.Deno.writeAllSync globalThis.Deno.writeFile globalThis.Deno.writeFileSync globalThis.Deno.writeSync globalThis.Deno.writeTextFile globalThis.Deno.writeTextFileSync globalThis.Error globalThis.Error.captureStackTrace globalThis.Error.prepareStackTrace globalThis.Error.prototype.message globalThis.Error.prototype.name globalThis.Error.prototype.toString globalThis.Error.stackTraceLimit globalThis.ErrorEvent globalThis.ErrorEvent.prototype.AT_TARGET globalThis.ErrorEvent.prototype.BUBBLING_PHASE globalThis.ErrorEvent.prototype.CAPTURING_PHASE globalThis.ErrorEvent.prototype.NONE globalThis.ErrorEvent.prototype.bubbles globalThis.ErrorEvent.prototype.cancelBubble globalThis.ErrorEvent.prototype.cancelable globalThis.ErrorEvent.prototype.colno globalThis.ErrorEvent.prototype.composed globalThis.ErrorEvent.prototype.composedPath globalThis.ErrorEvent.prototype.constructor globalThis.ErrorEvent.prototype.currentTarget globalThis.ErrorEvent.prototype.defaultPrevented globalThis.ErrorEvent.prototype.error globalThis.ErrorEvent.prototype.eventPhase globalThis.ErrorEvent.prototype.filename globalThis.ErrorEvent.prototype.initialized globalThis.ErrorEvent.prototype.lineno globalThis.ErrorEvent.prototype.message globalThis.ErrorEvent.prototype.preventDefault globalThis.ErrorEvent.prototype.returnValue globalThis.ErrorEvent.prototype.srcElement globalThis.ErrorEvent.prototype.stopImmediatePropagation globalThis.ErrorEvent.prototype.stopPropagation globalThis.ErrorEvent.prototype.target globalThis.ErrorEvent.prototype.timeStamp globalThis.ErrorEvent.prototype.type globalThis.EvalError globalThis.EvalError.prototype.constructor globalThis.EvalError.prototype.message globalThis.EvalError.prototype.name globalThis.EvalError.prototype.toString globalThis.Event globalThis.Event.AT_TARGET globalThis.Event.BUBBLING_PHASE globalThis.Event.CAPTURING_PHASE globalThis.Event.NONE globalThis.Event.prototype.AT_TARGET globalThis.Event.prototype.BUBBLING_PHASE globalThis.Event.prototype.CAPTURING_PHASE globalThis.Event.prototype.NONE globalThis.Event.prototype.bubbles globalThis.Event.prototype.cancelBubble globalThis.Event.prototype.cancelable globalThis.Event.prototype.composed globalThis.Event.prototype.composedPath globalThis.Event.prototype.currentTarget globalThis.Event.prototype.defaultPrevented globalThis.Event.prototype.eventPhase globalThis.Event.prototype.initialized globalThis.Event.prototype.preventDefault globalThis.Event.prototype.returnValue globalThis.Event.prototype.srcElement globalThis.Event.prototype.stopImmediatePropagation globalThis.Event.prototype.stopPropagation globalThis.Event.prototype.target globalThis.Event.prototype.timeStamp globalThis.Event.prototype.type globalThis.EventTarget globalThis.EventTarget.prototype.addEventListener globalThis.EventTarget.prototype.dispatchEvent globalThis.EventTarget.prototype.getParent globalThis.EventTarget.prototype.removeEventListener globalThis.File globalThis.File.prototype.arrayBuffer globalThis.File.prototype.constructor globalThis.File.prototype.lastModified globalThis.File.prototype.name globalThis.File.prototype.size globalThis.File.prototype.slice globalThis.File.prototype.stream globalThis.File.prototype.text globalThis.File.prototype.type globalThis.FileReader globalThis.FileReader.DONE globalThis.FileReader.EMPTY globalThis.FileReader.LOADING globalThis.FileReader.prototype.DONE globalThis.FileReader.prototype.EMPTY globalThis.FileReader.prototype.LOADING globalThis.FileReader.prototype.abort globalThis.FileReader.prototype.addEventListener globalThis.FileReader.prototype.constructor globalThis.FileReader.prototype.dispatchEvent globalThis.FileReader.prototype.error globalThis.FileReader.prototype.getParent globalThis.FileReader.prototype.onabort globalThis.FileReader.prototype.onerror globalThis.FileReader.prototype.onload globalThis.FileReader.prototype.onloadend globalThis.FileReader.prototype.onloadstart globalThis.FileReader.prototype.onprogress globalThis.FileReader.prototype.readAsArrayBuffer globalThis.FileReader.prototype.readAsBinaryString globalThis.FileReader.prototype.readAsDataURL globalThis.FileReader.prototype.readAsText globalThis.FileReader.prototype.readyState globalThis.FileReader.prototype.removeEventListener globalThis.FileReader.prototype.result globalThis.FinalizationRegistry globalThis.FinalizationRegistry.prototype.register globalThis.FinalizationRegistry.prototype.unregister globalThis.Float32Array globalThis.Float32Array.BYTES_PER_ELEMENT globalThis.Float32Array.prototype.BYTES_PER_ELEMENT globalThis.Float32Array.prototype.at globalThis.Float32Array.prototype.buffer globalThis.Float32Array.prototype.byteLength globalThis.Float32Array.prototype.byteOffset globalThis.Float32Array.prototype.constructor globalThis.Float32Array.prototype.copyWithin globalThis.Float32Array.prototype.entries globalThis.Float32Array.prototype.every globalThis.Float32Array.prototype.fill globalThis.Float32Array.prototype.filter globalThis.Float32Array.prototype.find globalThis.Float32Array.prototype.findIndex globalThis.Float32Array.prototype.findLast globalThis.Float32Array.prototype.findLastIndex globalThis.Float32Array.prototype.forEach globalThis.Float32Array.prototype.includes globalThis.Float32Array.prototype.indexOf globalThis.Float32Array.prototype.join globalThis.Float32Array.prototype.keys globalThis.Float32Array.prototype.lastIndexOf globalThis.Float32Array.prototype.length globalThis.Float32Array.prototype.map globalThis.Float32Array.prototype.reduce globalThis.Float32Array.prototype.reduceRight globalThis.Float32Array.prototype.reverse globalThis.Float32Array.prototype.set globalThis.Float32Array.prototype.slice globalThis.Float32Array.prototype.some globalThis.Float32Array.prototype.sort globalThis.Float32Array.prototype.subarray globalThis.Float32Array.prototype.toLocaleString globalThis.Float32Array.prototype.toString globalThis.Float32Array.prototype.values globalThis.Float64Array globalThis.Float64Array.BYTES_PER_ELEMENT globalThis.Float64Array.prototype.BYTES_PER_ELEMENT globalThis.Float64Array.prototype.at globalThis.Float64Array.prototype.buffer globalThis.Float64Array.prototype.byteLength globalThis.Float64Array.prototype.byteOffset globalThis.Float64Array.prototype.constructor globalThis.Float64Array.prototype.copyWithin globalThis.Float64Array.prototype.entries globalThis.Float64Array.prototype.every globalThis.Float64Array.prototype.fill globalThis.Float64Array.prototype.filter globalThis.Float64Array.prototype.find globalThis.Float64Array.prototype.findIndex globalThis.Float64Array.prototype.findLast globalThis.Float64Array.prototype.findLastIndex globalThis.Float64Array.prototype.forEach globalThis.Float64Array.prototype.includes globalThis.Float64Array.prototype.indexOf globalThis.Float64Array.prototype.join globalThis.Float64Array.prototype.keys globalThis.Float64Array.prototype.lastIndexOf globalThis.Float64Array.prototype.length globalThis.Float64Array.prototype.map globalThis.Float64Array.prototype.reduce globalThis.Float64Array.prototype.reduceRight globalThis.Float64Array.prototype.reverse globalThis.Float64Array.prototype.set globalThis.Float64Array.prototype.slice globalThis.Float64Array.prototype.some globalThis.Float64Array.prototype.sort globalThis.Float64Array.prototype.subarray globalThis.Float64Array.prototype.toLocaleString globalThis.Float64Array.prototype.toString globalThis.Float64Array.prototype.values globalThis.FormData globalThis.FormData.prototype.append globalThis.FormData.prototype.delete globalThis.FormData.prototype.entries globalThis.FormData.prototype.forEach globalThis.FormData.prototype.get globalThis.FormData.prototype.getAll globalThis.FormData.prototype.has globalThis.FormData.prototype.keys globalThis.FormData.prototype.set globalThis.FormData.prototype.values globalThis.Function globalThis.Function.prototype.apply globalThis.Function.prototype.arguments globalThis.Function.prototype.bind globalThis.Function.prototype.call globalThis.Function.prototype.caller globalThis.Function.prototype.length globalThis.Function.prototype.name globalThis.Function.prototype.toString globalThis.Headers globalThis.Headers.prototype.append globalThis.Headers.prototype.delete globalThis.Headers.prototype.entries globalThis.Headers.prototype.forEach globalThis.Headers.prototype.get globalThis.Headers.prototype.has globalThis.Headers.prototype.keys globalThis.Headers.prototype.set globalThis.Headers.prototype.values globalThis.Infinity globalThis.Int16Array globalThis.Int16Array.BYTES_PER_ELEMENT globalThis.Int16Array.prototype.BYTES_PER_ELEMENT globalThis.Int16Array.prototype.at globalThis.Int16Array.prototype.buffer globalThis.Int16Array.prototype.byteLength globalThis.Int16Array.prototype.byteOffset globalThis.Int16Array.prototype.constructor globalThis.Int16Array.prototype.copyWithin globalThis.Int16Array.prototype.entries globalThis.Int16Array.prototype.every globalThis.Int16Array.prototype.fill globalThis.Int16Array.prototype.filter globalThis.Int16Array.prototype.find globalThis.Int16Array.prototype.findIndex globalThis.Int16Array.prototype.findLast globalThis.Int16Array.prototype.findLastIndex globalThis.Int16Array.prototype.forEach globalThis.Int16Array.prototype.includes globalThis.Int16Array.prototype.indexOf globalThis.Int16Array.prototype.join globalThis.Int16Array.prototype.keys globalThis.Int16Array.prototype.lastIndexOf globalThis.Int16Array.prototype.length globalThis.Int16Array.prototype.map globalThis.Int16Array.prototype.reduce globalThis.Int16Array.prototype.reduceRight globalThis.Int16Array.prototype.reverse globalThis.Int16Array.prototype.set globalThis.Int16Array.prototype.slice globalThis.Int16Array.prototype.some globalThis.Int16Array.prototype.sort globalThis.Int16Array.prototype.subarray globalThis.Int16Array.prototype.toLocaleString globalThis.Int16Array.prototype.toString globalThis.Int16Array.prototype.values globalThis.Int32Array globalThis.Int32Array.BYTES_PER_ELEMENT globalThis.Int32Array.prototype.BYTES_PER_ELEMENT globalThis.Int32Array.prototype.at globalThis.Int32Array.prototype.buffer globalThis.Int32Array.prototype.byteLength globalThis.Int32Array.prototype.byteOffset globalThis.Int32Array.prototype.constructor globalThis.Int32Array.prototype.copyWithin globalThis.Int32Array.prototype.entries globalThis.Int32Array.prototype.every globalThis.Int32Array.prototype.fill globalThis.Int32Array.prototype.filter globalThis.Int32Array.prototype.find globalThis.Int32Array.prototype.findIndex globalThis.Int32Array.prototype.findLast globalThis.Int32Array.prototype.findLastIndex globalThis.Int32Array.prototype.forEach globalThis.Int32Array.prototype.includes globalThis.Int32Array.prototype.indexOf globalThis.Int32Array.prototype.join globalThis.Int32Array.prototype.keys globalThis.Int32Array.prototype.lastIndexOf globalThis.Int32Array.prototype.length globalThis.Int32Array.prototype.map globalThis.Int32Array.prototype.reduce globalThis.Int32Array.prototype.reduceRight globalThis.Int32Array.prototype.reverse globalThis.Int32Array.prototype.set globalThis.Int32Array.prototype.slice globalThis.Int32Array.prototype.some globalThis.Int32Array.prototype.sort globalThis.Int32Array.prototype.subarray globalThis.Int32Array.prototype.toLocaleString globalThis.Int32Array.prototype.toString globalThis.Int32Array.prototype.values globalThis.Int8Array globalThis.Int8Array.BYTES_PER_ELEMENT globalThis.Int8Array.prototype.BYTES_PER_ELEMENT globalThis.Int8Array.prototype.at globalThis.Int8Array.prototype.buffer globalThis.Int8Array.prototype.byteLength globalThis.Int8Array.prototype.byteOffset globalThis.Int8Array.prototype.constructor globalThis.Int8Array.prototype.copyWithin globalThis.Int8Array.prototype.entries globalThis.Int8Array.prototype.every globalThis.Int8Array.prototype.fill globalThis.Int8Array.prototype.filter globalThis.Int8Array.prototype.find globalThis.Int8Array.prototype.findIndex globalThis.Int8Array.prototype.findLast globalThis.Int8Array.prototype.findLastIndex globalThis.Int8Array.prototype.forEach globalThis.Int8Array.prototype.includes globalThis.Int8Array.prototype.indexOf globalThis.Int8Array.prototype.join globalThis.Int8Array.prototype.keys globalThis.Int8Array.prototype.lastIndexOf globalThis.Int8Array.prototype.length globalThis.Int8Array.prototype.map globalThis.Int8Array.prototype.reduce globalThis.Int8Array.prototype.reduceRight globalThis.Int8Array.prototype.reverse globalThis.Int8Array.prototype.set globalThis.Int8Array.prototype.slice globalThis.Int8Array.prototype.some globalThis.Int8Array.prototype.sort globalThis.Int8Array.prototype.subarray globalThis.Int8Array.prototype.toLocaleString globalThis.Int8Array.prototype.toString globalThis.Int8Array.prototype.values globalThis.Intl.Collator globalThis.Intl.Collator.prototype.compare globalThis.Intl.Collator.prototype.resolvedOptions globalThis.Intl.Collator.supportedLocalesOf globalThis.Intl.DateTimeFormat globalThis.Intl.DateTimeFormat.prototype.format globalThis.Intl.DateTimeFormat.prototype.formatRange globalThis.Intl.DateTimeFormat.prototype.formatRangeToParts globalThis.Intl.DateTimeFormat.prototype.formatToParts globalThis.Intl.DateTimeFormat.prototype.resolvedOptions globalThis.Intl.DateTimeFormat.supportedLocalesOf globalThis.Intl.DisplayNames globalThis.Intl.DisplayNames.prototype.of globalThis.Intl.DisplayNames.prototype.resolvedOptions globalThis.Intl.DisplayNames.supportedLocalesOf globalThis.Intl.ListFormat globalThis.Intl.ListFormat.prototype.format globalThis.Intl.ListFormat.prototype.formatToParts globalThis.Intl.ListFormat.prototype.resolvedOptions globalThis.Intl.ListFormat.supportedLocalesOf globalThis.Intl.Locale globalThis.Intl.Locale.prototype.baseName globalThis.Intl.Locale.prototype.calendar globalThis.Intl.Locale.prototype.caseFirst globalThis.Intl.Locale.prototype.collation globalThis.Intl.Locale.prototype.hourCycle globalThis.Intl.Locale.prototype.language globalThis.Intl.Locale.prototype.maximize globalThis.Intl.Locale.prototype.minimize globalThis.Intl.Locale.prototype.numberingSystem globalThis.Intl.Locale.prototype.numeric globalThis.Intl.Locale.prototype.region globalThis.Intl.Locale.prototype.script globalThis.Intl.Locale.prototype.toString globalThis.Intl.NumberFormat globalThis.Intl.NumberFormat.prototype.format globalThis.Intl.NumberFormat.prototype.formatToParts globalThis.Intl.NumberFormat.prototype.resolvedOptions globalThis.Intl.NumberFormat.supportedLocalesOf globalThis.Intl.PluralRules globalThis.Intl.PluralRules.prototype.resolvedOptions globalThis.Intl.PluralRules.prototype.select globalThis.Intl.PluralRules.supportedLocalesOf globalThis.Intl.RelativeTimeFormat globalThis.Intl.RelativeTimeFormat.prototype.format globalThis.Intl.RelativeTimeFormat.prototype.formatToParts globalThis.Intl.RelativeTimeFormat.prototype.resolvedOptions globalThis.Intl.RelativeTimeFormat.supportedLocalesOf globalThis.Intl.Segmenter globalThis.Intl.Segmenter.prototype.resolvedOptions globalThis.Intl.Segmenter.prototype.segment globalThis.Intl.Segmenter.supportedLocalesOf globalThis.Intl.getCanonicalLocales globalThis.Intl.v8BreakIterator globalThis.Intl.v8BreakIterator.prototype.adoptText globalThis.Intl.v8BreakIterator.prototype.breakType globalThis.Intl.v8BreakIterator.prototype.current globalThis.Intl.v8BreakIterator.prototype.first globalThis.Intl.v8BreakIterator.prototype.next globalThis.Intl.v8BreakIterator.prototype.resolvedOptions globalThis.Intl.v8BreakIterator.supportedLocalesOf globalThis.JSON.parse globalThis.JSON.stringify globalThis.Location globalThis.Map globalThis.Map.prototype.clear globalThis.Map.prototype.delete globalThis.Map.prototype.entries globalThis.Map.prototype.forEach globalThis.Map.prototype.get globalThis.Map.prototype.has globalThis.Map.prototype.keys globalThis.Map.prototype.set globalThis.Map.prototype.size globalThis.Map.prototype.values globalThis.Math.E globalThis.Math.LN10 globalThis.Math.LN2 globalThis.Math.LOG10E globalThis.Math.LOG2E globalThis.Math.PI globalThis.Math.SQRT1_2 globalThis.Math.SQRT2 globalThis.Math.abs globalThis.Math.acos globalThis.Math.acosh globalThis.Math.asin globalThis.Math.asinh globalThis.Math.atan globalThis.Math.atan2 globalThis.Math.atanh globalThis.Math.cbrt globalThis.Math.ceil globalThis.Math.clz32 globalThis.Math.cos globalThis.Math.cosh globalThis.Math.exp globalThis.Math.expm1 globalThis.Math.floor globalThis.Math.fround globalThis.Math.hypot globalThis.Math.imul globalThis.Math.log globalThis.Math.log10 globalThis.Math.log1p globalThis.Math.log2 globalThis.Math.max globalThis.Math.min globalThis.Math.pow globalThis.Math.random globalThis.Math.round globalThis.Math.sign globalThis.Math.sin globalThis.Math.sinh globalThis.Math.sqrt globalThis.Math.tan globalThis.Math.tanh globalThis.Math.trunc globalThis.MessageChannel globalThis.MessageChannel.prototype.port1 globalThis.MessageChannel.prototype.port2 globalThis.MessageEvent globalThis.MessageEvent.prototype.AT_TARGET globalThis.MessageEvent.prototype.BUBBLING_PHASE globalThis.MessageEvent.prototype.CAPTURING_PHASE globalThis.MessageEvent.prototype.NONE globalThis.MessageEvent.prototype.bubbles globalThis.MessageEvent.prototype.cancelBubble globalThis.MessageEvent.prototype.cancelable globalThis.MessageEvent.prototype.composed globalThis.MessageEvent.prototype.composedPath globalThis.MessageEvent.prototype.constructor globalThis.MessageEvent.prototype.currentTarget globalThis.MessageEvent.prototype.defaultPrevented globalThis.MessageEvent.prototype.eventPhase globalThis.MessageEvent.prototype.initialized globalThis.MessageEvent.prototype.preventDefault globalThis.MessageEvent.prototype.returnValue globalThis.MessageEvent.prototype.source globalThis.MessageEvent.prototype.srcElement globalThis.MessageEvent.prototype.stopImmediatePropagation globalThis.MessageEvent.prototype.stopPropagation globalThis.MessageEvent.prototype.target globalThis.MessageEvent.prototype.timeStamp globalThis.MessageEvent.prototype.type globalThis.MessagePort globalThis.MessagePort.prototype.addEventListener globalThis.MessagePort.prototype.close globalThis.MessagePort.prototype.constructor globalThis.MessagePort.prototype.dispatchEvent globalThis.MessagePort.prototype.getParent globalThis.MessagePort.prototype.onmessage globalThis.MessagePort.prototype.onmessageerror globalThis.MessagePort.prototype.postMessage globalThis.MessagePort.prototype.removeEventListener globalThis.MessagePort.prototype.start globalThis.NaN globalThis.Navigator globalThis.Navigator.prototype.gpu globalThis.Navigator.prototype.hardwareConcurrency globalThis.Number globalThis.Number.EPSILON globalThis.Number.MAX_SAFE_INTEGER globalThis.Number.MAX_VALUE globalThis.Number.MIN_SAFE_INTEGER globalThis.Number.MIN_VALUE globalThis.Number.NEGATIVE_INFINITY globalThis.Number.NaN globalThis.Number.POSITIVE_INFINITY globalThis.Number.isFinite globalThis.Number.isInteger globalThis.Number.isNaN globalThis.Number.isSafeInteger globalThis.Number.parseFloat globalThis.Number.parseInt globalThis.Number.prototype.toExponential globalThis.Number.prototype.toFixed globalThis.Number.prototype.toLocaleString globalThis.Number.prototype.toPrecision globalThis.Number.prototype.toString globalThis.Number.prototype.valueOf globalThis.Object globalThis.Object.assign globalThis.Object.create globalThis.Object.defineProperties globalThis.Object.defineProperty globalThis.Object.entries globalThis.Object.freeze globalThis.Object.fromEntries globalThis.Object.getOwnPropertyDescriptor globalThis.Object.getOwnPropertyDescriptors globalThis.Object.getOwnPropertyNames globalThis.Object.getOwnPropertySymbols globalThis.Object.getPrototypeOf globalThis.Object.hasOwn globalThis.Object.is globalThis.Object.isExtensible globalThis.Object.isFrozen globalThis.Object.isSealed globalThis.Object.keys globalThis.Object.preventExtensions globalThis.Object.prototype.__defineGetter__ globalThis.Object.prototype.__defineSetter__ globalThis.Object.prototype.__lookupGetter__ globalThis.Object.prototype.__lookupSetter__ globalThis.Object.prototype.hasOwnProperty globalThis.Object.prototype.isPrototypeOf globalThis.Object.prototype.propertyIsEnumerable globalThis.Object.prototype.toLocaleString globalThis.Object.prototype.toString globalThis.Object.prototype.valueOf globalThis.Object.seal globalThis.Object.setPrototypeOf globalThis.Object.values globalThis.Performance globalThis.Performance.prototype.clearMarks globalThis.Performance.prototype.clearMeasures globalThis.Performance.prototype.getEntries globalThis.Performance.prototype.getEntriesByName globalThis.Performance.prototype.getEntriesByType globalThis.Performance.prototype.mark globalThis.Performance.prototype.measure globalThis.Performance.prototype.now globalThis.Performance.prototype.toJSON globalThis.PerformanceEntry globalThis.PerformanceEntry.prototype.duration globalThis.PerformanceEntry.prototype.entryType globalThis.PerformanceEntry.prototype.name globalThis.PerformanceEntry.prototype.startTime globalThis.PerformanceEntry.prototype.toJSON globalThis.PerformanceMark globalThis.PerformanceMark.prototype.constructor globalThis.PerformanceMark.prototype.detail globalThis.PerformanceMark.prototype.duration globalThis.PerformanceMark.prototype.entryType globalThis.PerformanceMark.prototype.name globalThis.PerformanceMark.prototype.startTime globalThis.PerformanceMark.prototype.toJSON globalThis.PerformanceMeasure globalThis.PerformanceMeasure.prototype.constructor globalThis.PerformanceMeasure.prototype.detail globalThis.PerformanceMeasure.prototype.duration globalThis.PerformanceMeasure.prototype.entryType globalThis.PerformanceMeasure.prototype.name globalThis.PerformanceMeasure.prototype.startTime globalThis.PerformanceMeasure.prototype.toJSON globalThis.ProgressEvent globalThis.ProgressEvent.prototype.AT_TARGET globalThis.ProgressEvent.prototype.BUBBLING_PHASE globalThis.ProgressEvent.prototype.CAPTURING_PHASE globalThis.ProgressEvent.prototype.NONE globalThis.ProgressEvent.prototype.bubbles globalThis.ProgressEvent.prototype.cancelBubble globalThis.ProgressEvent.prototype.cancelable globalThis.ProgressEvent.prototype.composed globalThis.ProgressEvent.prototype.composedPath globalThis.ProgressEvent.prototype.constructor globalThis.ProgressEvent.prototype.currentTarget globalThis.ProgressEvent.prototype.defaultPrevented globalThis.ProgressEvent.prototype.eventPhase globalThis.ProgressEvent.prototype.initialized globalThis.ProgressEvent.prototype.preventDefault globalThis.ProgressEvent.prototype.returnValue globalThis.ProgressEvent.prototype.srcElement globalThis.ProgressEvent.prototype.stopImmediatePropagation globalThis.ProgressEvent.prototype.stopPropagation globalThis.ProgressEvent.prototype.target globalThis.ProgressEvent.prototype.timeStamp globalThis.ProgressEvent.prototype.type globalThis.Promise globalThis.Promise.all globalThis.Promise.allSettled globalThis.Promise.any globalThis.Promise.prototype.catch globalThis.Promise.prototype.finally globalThis.Promise.prototype.then globalThis.Promise.race globalThis.Promise.reject globalThis.Promise.resolve globalThis.Proxy globalThis.Proxy.revocable globalThis.RangeError globalThis.RangeError.prototype.constructor globalThis.RangeError.prototype.message globalThis.RangeError.prototype.name globalThis.RangeError.prototype.toString globalThis.ReadableByteStreamController globalThis.ReadableByteStreamController.prototype.byobRequest globalThis.ReadableByteStreamController.prototype.close globalThis.ReadableByteStreamController.prototype.desiredSize globalThis.ReadableByteStreamController.prototype.enqueue globalThis.ReadableByteStreamController.prototype.error globalThis.ReadableStream globalThis.ReadableStream.prototype.cancel globalThis.ReadableStream.prototype.getReader globalThis.ReadableStream.prototype.locked globalThis.ReadableStream.prototype.pipeThrough globalThis.ReadableStream.prototype.pipeTo globalThis.ReadableStream.prototype.tee globalThis.ReadableStream.prototype.values globalThis.ReadableStreamBYOBReader globalThis.ReadableStreamBYOBReader.prototype.cancel globalThis.ReadableStreamBYOBReader.prototype.closed globalThis.ReadableStreamBYOBReader.prototype.read globalThis.ReadableStreamBYOBReader.prototype.releaseLock globalThis.ReadableStreamBYOBRequest globalThis.ReadableStreamBYOBRequest.prototype.respond globalThis.ReadableStreamBYOBRequest.prototype.respondWithNewView globalThis.ReadableStreamBYOBRequest.prototype.view globalThis.ReadableStreamDefaultController globalThis.ReadableStreamDefaultController.prototype.close globalThis.ReadableStreamDefaultController.prototype.desiredSize globalThis.ReadableStreamDefaultController.prototype.enqueue globalThis.ReadableStreamDefaultController.prototype.error globalThis.ReadableStreamDefaultReader globalThis.ReadableStreamDefaultReader.prototype.cancel globalThis.ReadableStreamDefaultReader.prototype.closed globalThis.ReadableStreamDefaultReader.prototype.read globalThis.ReadableStreamDefaultReader.prototype.releaseLock globalThis.ReferenceError globalThis.ReferenceError.prototype.constructor globalThis.ReferenceError.prototype.message globalThis.ReferenceError.prototype.name globalThis.ReferenceError.prototype.toString globalThis.Reflect.apply globalThis.Reflect.construct globalThis.Reflect.defineProperty globalThis.Reflect.deleteProperty globalThis.Reflect.get globalThis.Reflect.getOwnPropertyDescriptor globalThis.Reflect.getPrototypeOf globalThis.Reflect.has globalThis.Reflect.isExtensible globalThis.Reflect.ownKeys globalThis.Reflect.preventExtensions globalThis.Reflect.set globalThis.Reflect.setPrototypeOf globalThis.RegExp globalThis.RegExp.$& globalThis.RegExp["$'"] globalThis.RegExp["$+"] globalThis.RegExp.$1 globalThis.RegExp.$2 globalThis.RegExp.$3 globalThis.RegExp.$4 globalThis.RegExp.$5 globalThis.RegExp.$6 globalThis.RegExp.$7 globalThis.RegExp.$8 globalThis.RegExp.$9 globalThis.RegExp.$_ globalThis.RegExp["$`"] globalThis.RegExp.input globalThis.RegExp.lastMatch globalThis.RegExp.lastParen globalThis.RegExp.leftContext globalThis.RegExp.prototype.compile globalThis.RegExp.prototype.dotAll globalThis.RegExp.prototype.exec globalThis.RegExp.prototype.flags globalThis.RegExp.prototype.global globalThis.RegExp.prototype.hasIndices globalThis.RegExp.prototype.ignoreCase globalThis.RegExp.prototype.multiline globalThis.RegExp.prototype.source globalThis.RegExp.prototype.sticky globalThis.RegExp.prototype.test globalThis.RegExp.prototype.toString globalThis.RegExp.prototype.unicode globalThis.RegExp.rightContext globalThis.Request globalThis.Request.prototype.arrayBuffer globalThis.Request.prototype.blob globalThis.Request.prototype.body globalThis.Request.prototype.bodyUsed globalThis.Request.prototype.clone globalThis.Request.prototype.formData globalThis.Request.prototype.headers globalThis.Request.prototype.json globalThis.Request.prototype.method globalThis.Request.prototype.redirect globalThis.Request.prototype.signal globalThis.Request.prototype.text globalThis.Request.prototype.url globalThis.Response globalThis.Response.error globalThis.Response.prototype.arrayBuffer globalThis.Response.prototype.blob globalThis.Response.prototype.body globalThis.Response.prototype.bodyUsed globalThis.Response.prototype.clone globalThis.Response.prototype.formData globalThis.Response.prototype.headers globalThis.Response.prototype.json globalThis.Response.prototype.ok globalThis.Response.prototype.redirected globalThis.Response.prototype.status globalThis.Response.prototype.statusText globalThis.Response.prototype.text globalThis.Response.prototype.type globalThis.Response.prototype.url globalThis.Response.redirect globalThis.Set globalThis.Set.prototype.add globalThis.Set.prototype.clear globalThis.Set.prototype.delete globalThis.Set.prototype.entries globalThis.Set.prototype.forEach globalThis.Set.prototype.has globalThis.Set.prototype.keys globalThis.Set.prototype.size globalThis.Set.prototype.values globalThis.SharedArrayBuffer globalThis.SharedArrayBuffer.prototype.byteLength globalThis.SharedArrayBuffer.prototype.slice globalThis.Storage globalThis.Storage.prototype.clear globalThis.Storage.prototype.getItem globalThis.Storage.prototype.key globalThis.Storage.prototype.length globalThis.Storage.prototype.removeItem globalThis.Storage.prototype.setItem globalThis.String globalThis.String.fromCharCode globalThis.String.fromCodePoint globalThis.String.prototype.anchor globalThis.String.prototype.at globalThis.String.prototype.big globalThis.String.prototype.blink globalThis.String.prototype.bold globalThis.String.prototype.charAt globalThis.String.prototype.charCodeAt globalThis.String.prototype.codePointAt globalThis.String.prototype.concat globalThis.String.prototype.endsWith globalThis.String.prototype.fixed globalThis.String.prototype.fontcolor globalThis.String.prototype.fontsize globalThis.String.prototype.includes globalThis.String.prototype.indexOf globalThis.String.prototype.italics globalThis.String.prototype.lastIndexOf globalThis.String.prototype.length globalThis.String.prototype.link globalThis.String.prototype.localeCompare globalThis.String.prototype.match globalThis.String.prototype.matchAll globalThis.String.prototype.normalize globalThis.String.prototype.padEnd globalThis.String.prototype.padStart globalThis.String.prototype.repeat globalThis.String.prototype.replace globalThis.String.prototype.replaceAll globalThis.String.prototype.search globalThis.String.prototype.slice globalThis.String.prototype.small globalThis.String.prototype.split globalThis.String.prototype.startsWith globalThis.String.prototype.strike globalThis.String.prototype.sub globalThis.String.prototype.substr globalThis.String.prototype.substring globalThis.String.prototype.sup globalThis.String.prototype.toLocaleLowerCase globalThis.String.prototype.toLocaleUpperCase globalThis.String.prototype.toLowerCase globalThis.String.prototype.toString globalThis.String.prototype.toUpperCase globalThis.String.prototype.trim globalThis.String.prototype.trimEnd globalThis.String.prototype.trimLeft globalThis.String.prototype.trimRight globalThis.String.prototype.trimStart globalThis.String.prototype.valueOf globalThis.String.raw globalThis.SubtleCrypto globalThis.SubtleCrypto.prototype.decrypt globalThis.SubtleCrypto.prototype.deriveBits globalThis.SubtleCrypto.prototype.deriveKey globalThis.SubtleCrypto.prototype.digest globalThis.SubtleCrypto.prototype.encrypt globalThis.SubtleCrypto.prototype.exportKey globalThis.SubtleCrypto.prototype.generateKey globalThis.SubtleCrypto.prototype.importKey globalThis.SubtleCrypto.prototype.sign globalThis.SubtleCrypto.prototype.unwrapKey globalThis.SubtleCrypto.prototype.verify globalThis.SubtleCrypto.prototype.wrapKey globalThis.Symbol globalThis.Symbol.asyncIterator globalThis.Symbol.for globalThis.Symbol.hasInstance globalThis.Symbol.isConcatSpreadable globalThis.Symbol.iterator globalThis.Symbol.keyFor globalThis.Symbol.match globalThis.Symbol.matchAll globalThis.Symbol.prototype.description globalThis.Symbol.prototype.toString globalThis.Symbol.prototype.valueOf globalThis.Symbol.replace globalThis.Symbol.search globalThis.Symbol.species globalThis.Symbol.split globalThis.Symbol.toPrimitive globalThis.Symbol.toStringTag globalThis.Symbol.unscopables globalThis.SyntaxError globalThis.SyntaxError.prototype.constructor globalThis.SyntaxError.prototype.message globalThis.SyntaxError.prototype.name globalThis.SyntaxError.prototype.toString globalThis.TextDecoder globalThis.TextDecoder.prototype.decode globalThis.TextDecoder.prototype.encoding globalThis.TextDecoder.prototype.fatal globalThis.TextDecoder.prototype.ignoreBOM globalThis.TextDecoderStream globalThis.TextDecoderStream.prototype.encoding globalThis.TextDecoderStream.prototype.fatal globalThis.TextDecoderStream.prototype.ignoreBOM globalThis.TextDecoderStream.prototype.readable globalThis.TextDecoderStream.prototype.writable globalThis.TextEncoder globalThis.TextEncoder.prototype.encode globalThis.TextEncoder.prototype.encodeInto globalThis.TextEncoder.prototype.encoding globalThis.TextEncoderStream globalThis.TextEncoderStream.prototype.encoding globalThis.TextEncoderStream.prototype.readable globalThis.TextEncoderStream.prototype.writable globalThis.TransformStream globalThis.TransformStream.prototype.readable globalThis.TransformStream.prototype.writable globalThis.TransformStreamDefaultController globalThis.TransformStreamDefaultController.prototype.desiredSize globalThis.TransformStreamDefaultController.prototype.enqueue globalThis.TransformStreamDefaultController.prototype.error globalThis.TransformStreamDefaultController.prototype.terminate globalThis.TypeError globalThis.TypeError.prototype.constructor globalThis.TypeError.prototype.message globalThis.TypeError.prototype.name globalThis.TypeError.prototype.toString globalThis.URIError globalThis.URIError.prototype.constructor globalThis.URIError.prototype.message globalThis.URIError.prototype.name globalThis.URIError.prototype.toString globalThis.URL globalThis.URL.createObjectURL globalThis.URL.prototype.hash globalThis.URL.prototype.host globalThis.URL.prototype.hostname globalThis.URL.prototype.href globalThis.URL.prototype.origin globalThis.URL.prototype.password globalThis.URL.prototype.pathname globalThis.URL.prototype.port globalThis.URL.prototype.protocol globalThis.URL.prototype.search globalThis.URL.prototype.searchParams globalThis.URL.prototype.toJSON globalThis.URL.prototype.toString globalThis.URL.prototype.username globalThis.URL.revokeObjectURL globalThis.URLPattern globalThis.URLPattern.prototype.exec globalThis.URLPattern.prototype.hash globalThis.URLPattern.prototype.hostname globalThis.URLPattern.prototype.password globalThis.URLPattern.prototype.pathname globalThis.URLPattern.prototype.port globalThis.URLPattern.prototype.protocol globalThis.URLPattern.prototype.search globalThis.URLPattern.prototype.test globalThis.URLPattern.prototype.username globalThis.URLSearchParams globalThis.URLSearchParams.prototype.append globalThis.URLSearchParams.prototype.delete globalThis.URLSearchParams.prototype.entries globalThis.URLSearchParams.prototype.forEach globalThis.URLSearchParams.prototype.get globalThis.URLSearchParams.prototype.getAll globalThis.URLSearchParams.prototype.has globalThis.URLSearchParams.prototype.keys globalThis.URLSearchParams.prototype.set globalThis.URLSearchParams.prototype.sort globalThis.URLSearchParams.prototype.toString globalThis.URLSearchParams.prototype.values globalThis.Uint16Array globalThis.Uint16Array.BYTES_PER_ELEMENT globalThis.Uint16Array.prototype.BYTES_PER_ELEMENT globalThis.Uint16Array.prototype.at globalThis.Uint16Array.prototype.buffer globalThis.Uint16Array.prototype.byteLength globalThis.Uint16Array.prototype.byteOffset globalThis.Uint16Array.prototype.constructor globalThis.Uint16Array.prototype.copyWithin globalThis.Uint16Array.prototype.entries globalThis.Uint16Array.prototype.every globalThis.Uint16Array.prototype.fill globalThis.Uint16Array.prototype.filter globalThis.Uint16Array.prototype.find globalThis.Uint16Array.prototype.findIndex globalThis.Uint16Array.prototype.findLast globalThis.Uint16Array.prototype.findLastIndex globalThis.Uint16Array.prototype.forEach globalThis.Uint16Array.prototype.includes globalThis.Uint16Array.prototype.indexOf globalThis.Uint16Array.prototype.join globalThis.Uint16Array.prototype.keys globalThis.Uint16Array.prototype.lastIndexOf globalThis.Uint16Array.prototype.length globalThis.Uint16Array.prototype.map globalThis.Uint16Array.prototype.reduce globalThis.Uint16Array.prototype.reduceRight globalThis.Uint16Array.prototype.reverse globalThis.Uint16Array.prototype.set globalThis.Uint16Array.prototype.slice globalThis.Uint16Array.prototype.some globalThis.Uint16Array.prototype.sort globalThis.Uint16Array.prototype.subarray globalThis.Uint16Array.prototype.toLocaleString globalThis.Uint16Array.prototype.toString globalThis.Uint16Array.prototype.values globalThis.Uint32Array globalThis.Uint32Array.BYTES_PER_ELEMENT globalThis.Uint32Array.prototype.BYTES_PER_ELEMENT globalThis.Uint32Array.prototype.at globalThis.Uint32Array.prototype.buffer globalThis.Uint32Array.prototype.byteLength globalThis.Uint32Array.prototype.byteOffset globalThis.Uint32Array.prototype.constructor globalThis.Uint32Array.prototype.copyWithin globalThis.Uint32Array.prototype.entries globalThis.Uint32Array.prototype.every globalThis.Uint32Array.prototype.fill globalThis.Uint32Array.prototype.filter globalThis.Uint32Array.prototype.find globalThis.Uint32Array.prototype.findIndex globalThis.Uint32Array.prototype.findLast globalThis.Uint32Array.prototype.findLastIndex globalThis.Uint32Array.prototype.forEach globalThis.Uint32Array.prototype.includes globalThis.Uint32Array.prototype.indexOf globalThis.Uint32Array.prototype.join globalThis.Uint32Array.prototype.keys globalThis.Uint32Array.prototype.lastIndexOf globalThis.Uint32Array.prototype.length globalThis.Uint32Array.prototype.map globalThis.Uint32Array.prototype.reduce globalThis.Uint32Array.prototype.reduceRight globalThis.Uint32Array.prototype.reverse globalThis.Uint32Array.prototype.set globalThis.Uint32Array.prototype.slice globalThis.Uint32Array.prototype.some globalThis.Uint32Array.prototype.sort globalThis.Uint32Array.prototype.subarray globalThis.Uint32Array.prototype.toLocaleString globalThis.Uint32Array.prototype.toString globalThis.Uint32Array.prototype.values globalThis.Uint8Array globalThis.Uint8Array.BYTES_PER_ELEMENT globalThis.Uint8Array.prototype.BYTES_PER_ELEMENT globalThis.Uint8Array.prototype.at globalThis.Uint8Array.prototype.buffer globalThis.Uint8Array.prototype.byteLength globalThis.Uint8Array.prototype.byteOffset globalThis.Uint8Array.prototype.constructor globalThis.Uint8Array.prototype.copyWithin globalThis.Uint8Array.prototype.entries globalThis.Uint8Array.prototype.every globalThis.Uint8Array.prototype.fill globalThis.Uint8Array.prototype.filter globalThis.Uint8Array.prototype.find globalThis.Uint8Array.prototype.findIndex globalThis.Uint8Array.prototype.findLast globalThis.Uint8Array.prototype.findLastIndex globalThis.Uint8Array.prototype.forEach globalThis.Uint8Array.prototype.includes globalThis.Uint8Array.prototype.indexOf globalThis.Uint8Array.prototype.join globalThis.Uint8Array.prototype.keys globalThis.Uint8Array.prototype.lastIndexOf globalThis.Uint8Array.prototype.length globalThis.Uint8Array.prototype.map globalThis.Uint8Array.prototype.reduce globalThis.Uint8Array.prototype.reduceRight globalThis.Uint8Array.prototype.reverse globalThis.Uint8Array.prototype.set globalThis.Uint8Array.prototype.slice globalThis.Uint8Array.prototype.some globalThis.Uint8Array.prototype.sort globalThis.Uint8Array.prototype.subarray globalThis.Uint8Array.prototype.toLocaleString globalThis.Uint8Array.prototype.toString globalThis.Uint8Array.prototype.values globalThis.Uint8ClampedArray globalThis.Uint8ClampedArray.BYTES_PER_ELEMENT globalThis.Uint8ClampedArray.prototype.BYTES_PER_ELEMENT globalThis.Uint8ClampedArray.prototype.at globalThis.Uint8ClampedArray.prototype.buffer globalThis.Uint8ClampedArray.prototype.byteLength globalThis.Uint8ClampedArray.prototype.byteOffset globalThis.Uint8ClampedArray.prototype.constructor globalThis.Uint8ClampedArray.prototype.copyWithin globalThis.Uint8ClampedArray.prototype.entries globalThis.Uint8ClampedArray.prototype.every globalThis.Uint8ClampedArray.prototype.fill globalThis.Uint8ClampedArray.prototype.filter globalThis.Uint8ClampedArray.prototype.find globalThis.Uint8ClampedArray.prototype.findIndex globalThis.Uint8ClampedArray.prototype.findLast globalThis.Uint8ClampedArray.prototype.findLastIndex globalThis.Uint8ClampedArray.prototype.forEach globalThis.Uint8ClampedArray.prototype.includes globalThis.Uint8ClampedArray.prototype.indexOf globalThis.Uint8ClampedArray.prototype.join globalThis.Uint8ClampedArray.prototype.keys globalThis.Uint8ClampedArray.prototype.lastIndexOf globalThis.Uint8ClampedArray.prototype.length globalThis.Uint8ClampedArray.prototype.map globalThis.Uint8ClampedArray.prototype.reduce globalThis.Uint8ClampedArray.prototype.reduceRight globalThis.Uint8ClampedArray.prototype.reverse globalThis.Uint8ClampedArray.prototype.set globalThis.Uint8ClampedArray.prototype.slice globalThis.Uint8ClampedArray.prototype.some globalThis.Uint8ClampedArray.prototype.sort globalThis.Uint8ClampedArray.prototype.subarray globalThis.Uint8ClampedArray.prototype.toLocaleString globalThis.Uint8ClampedArray.prototype.toString globalThis.Uint8ClampedArray.prototype.values globalThis.WeakMap globalThis.WeakMap.prototype.delete globalThis.WeakMap.prototype.get globalThis.WeakMap.prototype.has globalThis.WeakMap.prototype.set globalThis.WeakRef globalThis.WeakRef.prototype.deref globalThis.WeakSet globalThis.WeakSet.prototype.add globalThis.WeakSet.prototype.delete globalThis.WeakSet.prototype.has globalThis.WebAssembly.CompileError globalThis.WebAssembly.CompileError.prototype.constructor globalThis.WebAssembly.CompileError.prototype.message globalThis.WebAssembly.CompileError.prototype.name globalThis.WebAssembly.CompileError.prototype.toString globalThis.WebAssembly.Exception globalThis.WebAssembly.Exception.prototype.constructor globalThis.WebAssembly.Exception.prototype.message globalThis.WebAssembly.Exception.prototype.name globalThis.WebAssembly.Exception.prototype.toString globalThis.WebAssembly.Global globalThis.WebAssembly.Global.prototype.value globalThis.WebAssembly.Global.prototype.valueOf globalThis.WebAssembly.Instance globalThis.WebAssembly.Instance.prototype.exports globalThis.WebAssembly.LinkError globalThis.WebAssembly.LinkError.prototype.constructor globalThis.WebAssembly.LinkError.prototype.message globalThis.WebAssembly.LinkError.prototype.name globalThis.WebAssembly.LinkError.prototype.toString globalThis.WebAssembly.Memory globalThis.WebAssembly.Memory.prototype.buffer globalThis.WebAssembly.Memory.prototype.grow globalThis.WebAssembly.Module globalThis.WebAssembly.Module.customSections globalThis.WebAssembly.Module.exports globalThis.WebAssembly.Module.imports globalThis.WebAssembly.RuntimeError globalThis.WebAssembly.RuntimeError.prototype.constructor globalThis.WebAssembly.RuntimeError.prototype.message globalThis.WebAssembly.RuntimeError.prototype.name globalThis.WebAssembly.RuntimeError.prototype.toString globalThis.WebAssembly.Table globalThis.WebAssembly.Table.prototype.get globalThis.WebAssembly.Table.prototype.grow globalThis.WebAssembly.Table.prototype.length globalThis.WebAssembly.Table.prototype.set globalThis.WebAssembly.Tag globalThis.WebAssembly.WebAssembly.Exception.prototype.getArg globalThis.WebAssembly.WebAssembly.Exception.prototype.is globalThis.WebAssembly.WebAssembly.Exception.prototype.message globalThis.WebAssembly.WebAssembly.Exception.prototype.name globalThis.WebAssembly.compile globalThis.WebAssembly.compileStreaming globalThis.WebAssembly.instantiate globalThis.WebAssembly.instantiateStreaming globalThis.WebAssembly.validate globalThis.WebSocket globalThis.WebSocket.CLOSED globalThis.WebSocket.CLOSING globalThis.WebSocket.CONNECTING globalThis.WebSocket.OPEN globalThis.WebSocket.prototype.CLOSED globalThis.WebSocket.prototype.CLOSING globalThis.WebSocket.prototype.CONNECTING globalThis.WebSocket.prototype.OPEN globalThis.WebSocket.prototype.addEventListener globalThis.WebSocket.prototype.binaryType globalThis.WebSocket.prototype.bufferedAmount globalThis.WebSocket.prototype.close globalThis.WebSocket.prototype.constructor globalThis.WebSocket.prototype.dispatchEvent globalThis.WebSocket.prototype.extensions globalThis.WebSocket.prototype.getParent globalThis.WebSocket.prototype.onclose globalThis.WebSocket.prototype.onerror globalThis.WebSocket.prototype.onmessage globalThis.WebSocket.prototype.onopen globalThis.WebSocket.prototype.protocol globalThis.WebSocket.prototype.readyState globalThis.WebSocket.prototype.removeEventListener globalThis.WebSocket.prototype.send globalThis.WebSocket.prototype.url globalThis.Window globalThis.Window.prototype.addEventListener globalThis.Window.prototype.constructor globalThis.Window.prototype.dispatchEvent globalThis.Window.prototype.getParent globalThis.Window.prototype.removeEventListener globalThis.Worker globalThis.Worker.prototype.addEventListener globalThis.Worker.prototype.constructor globalThis.Worker.prototype.dispatchEvent globalThis.Worker.prototype.getParent globalThis.Worker.prototype.onerror globalThis.Worker.prototype.onmessage globalThis.Worker.prototype.onmessageerror globalThis.Worker.prototype.postMessage globalThis.Worker.prototype.removeEventListener globalThis.Worker.prototype.terminate globalThis.WritableStream globalThis.WritableStream.prototype.abort globalThis.WritableStream.prototype.close globalThis.WritableStream.prototype.getWriter globalThis.WritableStream.prototype.locked globalThis.WritableStreamDefaultController globalThis.WritableStreamDefaultController.prototype.error globalThis.WritableStreamDefaultController.prototype.signal globalThis.WritableStreamDefaultWriter globalThis.WritableStreamDefaultWriter.prototype.abort globalThis.WritableStreamDefaultWriter.prototype.close globalThis.WritableStreamDefaultWriter.prototype.closed globalThis.WritableStreamDefaultWriter.prototype.desiredSize globalThis.WritableStreamDefaultWriter.prototype.ready globalThis.WritableStreamDefaultWriter.prototype.releaseLock globalThis.WritableStreamDefaultWriter.prototype.write globalThis.addEventListener globalThis.alert globalThis.atob globalThis.btoa globalThis.clearInterval globalThis.clearTimeout globalThis.close globalThis.closed globalThis.confirm globalThis.console.assert globalThis.console.clear globalThis.console.count globalThis.console.countReset globalThis.console.debug globalThis.console.dir globalThis.console.dirxml globalThis.console.error globalThis.console.group globalThis.console.groupCollapsed globalThis.console.groupEnd globalThis.console.indentLevel globalThis.console.info globalThis.console.log globalThis.console.table globalThis.console.time globalThis.console.timeEnd globalThis.console.timeLog globalThis.console.trace globalThis.console.warn globalThis.crypto.constructor globalThis.crypto.getRandomValues globalThis.crypto.randomUUID globalThis.crypto.subtle globalThis.decodeURI globalThis.decodeURIComponent globalThis.dispatchEvent globalThis.encodeURI globalThis.encodeURIComponent globalThis.escape globalThis.eval globalThis.fetch globalThis.isFinite globalThis.isNaN globalThis.localStorage.clear globalThis.localStorage.constructor globalThis.localStorage.getItem globalThis.localStorage.key globalThis.localStorage.length globalThis.localStorage.removeItem globalThis.localStorage.setItem globalThis.location globalThis.navigator.constructor globalThis.navigator.gpu globalThis.navigator.hardwareConcurrency globalThis.onload globalThis.onunload globalThis.parseFloat globalThis.parseInt globalThis.performance.clearMarks globalThis.performance.clearMeasures globalThis.performance.constructor globalThis.performance.getEntries globalThis.performance.getEntriesByName globalThis.performance.getEntriesByType globalThis.performance.mark globalThis.performance.measure globalThis.performance.now globalThis.performance.toJSON globalThis.prompt globalThis.queueMicrotask globalThis.removeEventListener globalThis.sessionStorage.clear globalThis.sessionStorage.constructor globalThis.sessionStorage.getItem globalThis.sessionStorage.key globalThis.sessionStorage.length globalThis.sessionStorage.removeItem globalThis.sessionStorage.setItem globalThis.setInterval globalThis.setTimeout globalThis.structuredClone globalThis.undefined globalThis.unescape ``` </div> </details> <details> <summary>output (info.txt)</summary> <div> ```ts Check file:///C:/Users/azusa/work/deno/test/tmp.ts error: TS2339 [ERROR]: Property 'AbortController' does not exist on type 'typeof globalThis'. globalThis.AbortController ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1:12 TS2339 [ERROR]: Property 'AbortController' does not exist on type 'typeof globalThis'. globalThis.AbortController.prototype.abort ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:2:12 TS2339 [ERROR]: Property 'AbortController' does not exist on type 'typeof globalThis'. globalThis.AbortController.prototype.signal ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:3:12 TS2339 [ERROR]: Property 'getParent' does not exist on type 'AbortSignal'. globalThis.AbortSignal.prototype.getParent ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:10:34 TS2339 [ERROR]: Property 'waitAsync' does not exist on type 'Atomics'. globalThis.Atomics.waitAsync ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:74:20 TS2339 [ERROR]: Property 'findLastIndex' does not exist on type 'BigInt64Array'. globalThis.BigInt64Array.prototype.findLastIndex ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:98:36 TS2339 [ERROR]: Property 'findLastIndex' does not exist on type 'BigUint64Array'. globalThis.BigUint64Array.prototype.findLastIndex ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:134:37 TS2339 [ERROR]: Property 'Blob' does not exist on type 'typeof globalThis'. globalThis.Blob ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:154:12 TS2339 [ERROR]: Property 'Blob' does not exist on type 'typeof globalThis'. globalThis.Blob.prototype.arrayBuffer ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:155:12 TS2339 [ERROR]: Property 'Blob' does not exist on type 'typeof globalThis'. globalThis.Blob.prototype.size ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:156:12 TS2339 [ERROR]: Property 'Blob' does not exist on type 'typeof globalThis'. globalThis.Blob.prototype.slice ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:157:12 TS2339 [ERROR]: Property 'Blob' does not exist on type 'typeof globalThis'. globalThis.Blob.prototype.stream ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:158:12 TS2339 [ERROR]: Property 'Blob' does not exist on type 'typeof globalThis'. globalThis.Blob.prototype.text ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:159:12 TS2339 [ERROR]: Property 'Blob' does not exist on type 'typeof globalThis'. globalThis.Blob.prototype.type ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:160:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:167:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.AT_TARGET ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:168:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.BUBBLING_PHASE ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:169:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.CAPTURING_PHASE ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:170:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.NONE ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:171:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.bubbles ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:172:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.cancelBubble ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:173:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.cancelable ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:174:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.code ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:175:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.composed ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:176:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.composedPath ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:177:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.constructor ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:178:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.currentTarget ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:179:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.defaultPrevented ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:180:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.eventPhase ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:181:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.initialized ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:182:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.preventDefault ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:183:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.reason ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:184:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.returnValue ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:185:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.srcElement ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:186:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.stopImmediatePropagation ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:187:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.stopPropagation ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:188:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.target ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:189:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.timeStamp ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:190:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.type ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:191:12 TS2339 [ERROR]: Property 'CloseEvent' does not exist on type 'typeof globalThis'. globalThis.CloseEvent.prototype.wasClean ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:192:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.Crypto ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:196:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.Crypto.prototype.getRandomValues ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:197:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.Crypto.prototype.randomUUID ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:198:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.Crypto.prototype.subtle ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:199:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:205:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.AT_TARGET ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:206:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.BUBBLING_PHASE ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:207:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.CAPTURING_PHASE ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:208:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.NONE ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:209:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.bubbles ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:210:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.cancelBubble ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:211:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.cancelable ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:212:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.composed ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:213:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.composedPath ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:214:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.constructor ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:215:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.currentTarget ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:216:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.defaultPrevented ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:217:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.detail ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:218:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.eventPhase ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:219:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.initialized ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:220:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.preventDefault ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:221:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.returnValue ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:222:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.srcElement ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:223:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.stopImmediatePropagation ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:224:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.stopPropagation ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:225:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.target ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:226:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.timeStamp ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:227:12 TS2339 [ERROR]: Property 'CustomEvent' does not exist on type 'typeof globalThis'. globalThis.CustomEvent.prototype.type ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:228:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:229:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.ABORT_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:230:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.DATA_CLONE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:231:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.DOMSTRING_SIZE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:232:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.HIERARCHY_REQUEST_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:233:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.INDEX_SIZE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:234:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.INUSE_ATTRIBUTE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:235:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.INVALID_ACCESS_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:236:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.INVALID_CHARACTER_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:237:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.INVALID_MODIFICATION_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:238:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.INVALID_NODE_TYPE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:239:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.INVALID_STATE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:240:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.NAMESPACE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:241:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.NETWORK_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:242:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.NOT_FOUND_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:243:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.NOT_SUPPORTED_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:244:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.NO_DATA_ALLOWED_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:245:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.NO_MODIFICATION_ALLOWED_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:246:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.QUOTA_EXCEEDED_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:247:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.SECURITY_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:248:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.SYNTAX_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:249:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.TIMEOUT_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:250:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.TYPE_MISMATCH_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:251:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.URL_MISMATCH_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:252:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.VALIDATION_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:253:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.WRONG_DOCUMENT_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:254:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.ABORT_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:255:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.DATA_CLONE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:256:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.DOMSTRING_SIZE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:257:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.HIERARCHY_REQUEST_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:258:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.INDEX_SIZE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:259:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.INUSE_ATTRIBUTE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:260:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.INVALID_ACCESS_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:261:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.INVALID_CHARACTER_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:262:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.INVALID_MODIFICATION_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:263:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.INVALID_NODE_TYPE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:264:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.INVALID_STATE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:265:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.NAMESPACE_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:266:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.NETWORK_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:267:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.NOT_FOUND_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:268:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.NOT_SUPPORTED_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:269:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.NO_DATA_ALLOWED_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:270:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.NO_MODIFICATION_ALLOWED_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:271:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.QUOTA_EXCEEDED_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:272:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.SECURITY_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:273:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.SYNTAX_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:274:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.TIMEOUT_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:275:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.TYPE_MISMATCH_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:276:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.URL_MISMATCH_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:277:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.VALIDATION_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:278:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.WRONG_DOCUMENT_ERR ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:279:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.code ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:280:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.constructor ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:281:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.message ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:282:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.name ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:283:12 TS2339 [ERROR]: Property 'DOMException' does not exist on type 'typeof globalThis'. globalThis.DOMException.prototype.toString ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:284:12 TS2339 [ERROR]: Property 'getYear' does not exist on type 'Date'. globalThis.Date.prototype.getYear ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:331:27 TS2339 [ERROR]: Property 'setYear' does not exist on type 'Date'. globalThis.Date.prototype.setYear ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:347:27 TS2551 [ERROR]: Property 'toGMTString' does not exist on type 'Date'. Did you mean 'toUTCString'? globalThis.Date.prototype.toGMTString ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:349:27 'toUTCString' is declared here. toUTCString(): string; ~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.es5.d.ts:895:5 TS2339 [ERROR]: Property 'getParent' does not exist on type 'PermissionStatus'. globalThis.Deno.PermissionStatus.prototype.getParent ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:390:44 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.BadResource ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:426:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.BadResource.prototype.constructor ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:427:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.BadResource.prototype.message ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:428:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.BadResource.prototype.name ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:429:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.BadResource.prototype.toString ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:430:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.Interrupted ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:431:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.Interrupted.prototype.constructor ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:432:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.Interrupted.prototype.message ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:433:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.Interrupted.prototype.name ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:434:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.Interrupted.prototype.toString ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:435:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.callConsole ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:436:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.close ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:437:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.createHostObject ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:438:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.createPrepareStackTrace ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:439:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.decode ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:440:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.deserialize ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:441:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.encode ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:442:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.evalContext ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:443:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.getPromiseDetails ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:444:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.getProxyDetails ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:445:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.hasTickScheduled ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:446:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.isProxy ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:447:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.memoryUsage ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:448:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.metrics ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:449:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.opAsync ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:450:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.opSync ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:451:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.opcallAsync ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:452:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.opcallSync ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:453:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.opresolve ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:454:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.ops ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:455:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.print ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:456:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.read ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:457:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.refOp ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:458:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.registerErrorBuilder ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:459:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.registerErrorClass ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:460:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.resources ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:461:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.runMicrotasks ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:462:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.serialize ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:463:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.setHasTickScheduled ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:464:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.setMacrotaskCallback ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:465:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.setNextTickCallback ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:466:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.setPromiseRejectCallback ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:467:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.setUncaughtExceptionCallback ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:468:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.setWasmStreamingCallback ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:469:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.shutdown ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:470:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.syncOpsCache ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:471:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.tryClose ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:472:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.unrefOp ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:473:17 TS2339 [ERROR]: Property 'core' does not exist on type 'typeof Deno'. globalThis.Deno.core.write ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:474:17 TS2339 [ERROR]: Property 'NotSupported' does not exist on type 'typeof errors'. globalThis.Deno.errors.NotSupported ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:553:24 TS2339 [ERROR]: Property 'NotSupported' does not exist on type 'typeof errors'. globalThis.Deno.errors.NotSupported.prototype.constructor ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:554:24 TS2339 [ERROR]: Property 'NotSupported' does not exist on type 'typeof errors'. globalThis.Deno.errors.NotSupported.prototype.message ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:555:24 TS2339 [ERROR]: Property 'NotSupported' does not exist on type 'typeof errors'. globalThis.Deno.errors.NotSupported.prototype.name ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:556:24 TS2339 [ERROR]: Property 'NotSupported' does not exist on type 'typeof errors'. globalThis.Deno.errors.NotSupported.prototype.toString ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:557:24 TS2339 [ERROR]: Property 'internal' does not exist on type 'typeof Deno'. globalThis.Deno.internal ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:589:17 TS2339 [ERROR]: Property 'prepareStackTrace' does not exist on type 'ErrorConstructor'. globalThis.Error.prepareStackTrace ~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:689:18 TS2339 [ERROR]: Property 'stackTraceLimit' does not exist on type 'ErrorConstructor'. globalThis.Error.stackTraceLimit ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:693:18 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:694:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.AT_TARGET ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:695:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.BUBBLING_PHASE ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:696:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.CAPTURING_PHASE ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:697:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.NONE ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:698:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.bubbles ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:699:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.cancelBubble ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:700:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.cancelable ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:701:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.colno ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:702:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.composed ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:703:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.composedPath ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:704:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.constructor ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:705:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.currentTarget ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:706:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.defaultPrevented ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:707:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.error ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:708:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.eventPhase ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:709:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.filename ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:710:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.initialized ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:711:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.lineno ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:712:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.message ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:713:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.preventDefault ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:714:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.returnValue ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:715:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.srcElement ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:716:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.stopImmediatePropagation ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:717:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.stopPropagation ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:718:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.target ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:719:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.timeStamp ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:720:12 TS2339 [ERROR]: Property 'ErrorEvent' does not exist on type 'typeof globalThis'. globalThis.ErrorEvent.prototype.type ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:721:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:727:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.AT_TARGET ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:728:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.BUBBLING_PHASE ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:729:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.CAPTURING_PHASE ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:730:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.NONE ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:731:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.AT_TARGET ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:732:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.BUBBLING_PHASE ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:733:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.CAPTURING_PHASE ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:734:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.NONE ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:735:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.bubbles ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:736:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.cancelBubble ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:737:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.cancelable ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:738:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.composed ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:739:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.composedPath ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:740:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.currentTarget ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:741:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.defaultPrevented ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:742:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.eventPhase ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:743:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.initialized ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:744:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.preventDefault ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:745:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.returnValue ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:746:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.srcElement ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:747:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.stopImmediatePropagation ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:748:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.stopPropagation ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:749:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.target ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:750:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.timeStamp ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:751:12 TS2339 [ERROR]: Property 'Event' does not exist on type 'typeof globalThis'. globalThis.Event.prototype.type ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:752:12 TS2339 [ERROR]: Property 'EventTarget' does not exist on type 'typeof globalThis'. globalThis.EventTarget ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:753:12 TS2339 [ERROR]: Property 'EventTarget' does not exist on type 'typeof globalThis'. globalThis.EventTarget.prototype.addEventListener ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:754:12 TS2339 [ERROR]: Property 'EventTarget' does not exist on type 'typeof globalThis'. globalThis.EventTarget.prototype.dispatchEvent ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:755:12 TS2339 [ERROR]: Property 'EventTarget' does not exist on type 'typeof globalThis'. globalThis.EventTarget.prototype.getParent ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:756:12 TS2339 [ERROR]: Property 'EventTarget' does not exist on type 'typeof globalThis'. globalThis.EventTarget.prototype.removeEventListener ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:757:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:758:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File.prototype.arrayBuffer ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:759:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File.prototype.constructor ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:760:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File.prototype.lastModified ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:761:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File.prototype.name ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:762:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File.prototype.size ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:763:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File.prototype.slice ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:764:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File.prototype.stream ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:765:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File.prototype.text ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:766:12 TS2339 [ERROR]: Property 'File' does not exist on type 'typeof globalThis'. globalThis.File.prototype.type ~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:767:12 TS2339 [ERROR]: Property 'getParent' does not exist on type 'FileReader'. globalThis.FileReader.prototype.getParent ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:780:33 TS2339 [ERROR]: Property 'findLastIndex' does not exist on type 'Float32Array'. globalThis.Float32Array.prototype.findLastIndex ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:813:35 TS2339 [ERROR]: Property 'findLastIndex' does not exist on type 'Float64Array'. globalThis.Float64Array.prototype.findLastIndex ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:849:35 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:889:12 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers.prototype.append ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:890:12 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers.prototype.delete ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:891:12 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers.prototype.entries ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:892:12 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers.prototype.forEach ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:893:12 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers.prototype.get ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:894:12 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers.prototype.has ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:895:12 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers.prototype.keys ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:896:12 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers.prototype.set ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:897:12 TS2339 [ERROR]: Property 'Headers' does not exist on type 'typeof globalThis'. globalThis.Headers.prototype.values ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:898:12 TS2339 [ERROR]: Property 'findLastIndex' does not exist on type 'Int16Array'. globalThis.Int16Array.prototype.findLastIndex ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:916:33 TS2339 [ERROR]: Property 'findLastIndex' does not exist on type 'Int32Array'. globalThis.Int32Array.prototype.findLastIndex ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:952:33 TS2339 [ERROR]: Property 'ListFormat' does not exist on type 'typeof Intl'. globalThis.Intl.ListFormat ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1023:17 TS2339 [ERROR]: Property 'ListFormat' does not exist on type 'typeof Intl'. globalThis.Intl.ListFormat.prototype.format ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1024:17 TS2339 [ERROR]: Property 'ListFormat' does not exist on type 'typeof Intl'. globalThis.Intl.ListFormat.prototype.formatToParts ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1025:17 TS2339 [ERROR]: Property 'ListFormat' does not exist on type 'typeof Intl'. globalThis.Intl.ListFormat.prototype.resolvedOptions ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1026:17 TS2339 [ERROR]: Property 'ListFormat' does not exist on type 'typeof Intl'. globalThis.Intl.ListFormat.supportedLocalesOf ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1027:17 TS2339 [ERROR]: Property 'Segmenter' does not exist on type 'typeof Intl'. globalThis.Intl.Segmenter ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1056:17 TS2339 [ERROR]: Property 'Segmenter' does not exist on type 'typeof Intl'. globalThis.Intl.Segmenter.prototype.resolvedOptions ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1057:17 TS2339 [ERROR]: Property 'Segmenter' does not exist on type 'typeof Intl'. globalThis.Intl.Segmenter.prototype.segment ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1058:17 TS2339 [ERROR]: Property 'Segmenter' does not exist on type 'typeof Intl'. globalThis.Intl.Segmenter.supportedLocalesOf ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1059:17 TS2339 [ERROR]: Property 'getCanonicalLocales' does not exist on type 'typeof Intl'. globalThis.Intl.getCanonicalLocales ~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1060:17 TS2339 [ERROR]: Property 'v8BreakIterator' does not exist on type 'typeof Intl'. globalThis.Intl.v8BreakIterator ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1061:17 TS2339 [ERROR]: Property 'v8BreakIterator' does not exist on type 'typeof Intl'. globalThis.Intl.v8BreakIterator.prototype.adoptText ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1062:17 TS2339 [ERROR]: Property 'v8BreakIterator' does not exist on type 'typeof Intl'. globalThis.Intl.v8BreakIterator.prototype.breakType ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1063:17 TS2339 [ERROR]: Property 'v8BreakIterator' does not exist on type 'typeof Intl'. globalThis.Intl.v8BreakIterator.prototype.current ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1064:17 TS2339 [ERROR]: Property 'v8BreakIterator' does not exist on type 'typeof Intl'. globalThis.Intl.v8BreakIterator.prototype.first ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1065:17 TS2339 [ERROR]: Property 'v8BreakIterator' does not exist on type 'typeof Intl'. globalThis.Intl.v8BreakIterator.prototype.next ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1066:17 TS2339 [ERROR]: Property 'v8BreakIterator' does not exist on type 'typeof Intl'. globalThis.Intl.v8BreakIterator.prototype.resolvedOptions ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1067:17 TS2339 [ERROR]: Property 'v8BreakIterator' does not exist on type 'typeof Intl'. globalThis.Intl.v8BreakIterator.supportedLocalesOf ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1068:17 TS2339 [ERROR]: Property 'Location' does not exist on type 'typeof globalThis'. globalThis.Location ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1071:12 TS2339 [ERROR]: Property 'MessageChannel' does not exist on type 'typeof globalThis'. globalThis.MessageChannel ~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1126:12 TS2339 [ERROR]: Property 'MessageChannel' does not exist on type 'typeof globalThis'. globalThis.MessageChannel.prototype.port1 ~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1127:12 TS2339 [ERROR]: Property 'MessageChannel' does not exist on type 'typeof globalThis'. globalThis.MessageChannel.prototype.port2 ~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1128:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1129:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.AT_TARGET ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1130:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.BUBBLING_PHASE ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1131:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.CAPTURING_PHASE ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1132:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.NONE ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1133:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.bubbles ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1134:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.cancelBubble ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1135:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.cancelable ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1136:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.composed ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1137:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.composedPath ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1138:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.constructor ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1139:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.currentTarget ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1140:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.defaultPrevented ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1141:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.eventPhase ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1142:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.initialized ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1143:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.preventDefault ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1144:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.returnValue ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1145:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.source ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1146:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.srcElement ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1147:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.stopImmediatePropagation ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1148:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.stopPropagation ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1149:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.target ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1150:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.timeStamp ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1151:12 TS2339 [ERROR]: Property 'MessageEvent' does not exist on type 'typeof globalThis'. globalThis.MessageEvent.prototype.type ~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1152:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1153:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.addEventListener ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1154:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.close ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1155:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.constructor ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1156:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.dispatchEvent ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1157:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.getParent ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1158:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.onmessage ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1159:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.onmessageerror ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1160:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.postMessage ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1161:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.removeEventListener ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1162:12 TS2339 [ERROR]: Property 'MessagePort' does not exist on type 'typeof globalThis'. globalThis.MessagePort.prototype.start ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1163:12 TS2339 [ERROR]: Property 'Navigator' does not exist on type 'typeof globalThis'. globalThis.Navigator ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1165:12 TS2339 [ERROR]: Property 'Navigator' does not exist on type 'typeof globalThis'. globalThis.Navigator.prototype.gpu ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1166:12 TS2339 [ERROR]: Property 'Navigator' does not exist on type 'typeof globalThis'. globalThis.Navigator.prototype.hardwareConcurrency ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1167:12 TS2339 [ERROR]: Property '__defineGetter__' does not exist on type 'Object'. globalThis.Object.prototype.__defineGetter__ ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1209:29 TS2339 [ERROR]: Property '__defineSetter__' does not exist on type 'Object'. globalThis.Object.prototype.__defineSetter__ ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1210:29 TS2339 [ERROR]: Property '__lookupGetter__' does not exist on type 'Object'. globalThis.Object.prototype.__lookupGetter__ ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1211:29 TS2339 [ERROR]: Property '__lookupSetter__' does not exist on type 'Object'. globalThis.Object.prototype.__lookupSetter__ ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1212:29 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1222:12 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance.prototype.clearMarks ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1223:12 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance.prototype.clearMeasures ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1224:12 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance.prototype.getEntries ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1225:12 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance.prototype.getEntriesByName ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1226:12 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance.prototype.getEntriesByType ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1227:12 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance.prototype.mark ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1228:12 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance.prototype.measure ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1229:12 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance.prototype.now ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1230:12 TS2339 [ERROR]: Property 'Performance' does not exist on type 'typeof globalThis'. globalThis.Performance.prototype.toJSON ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1231:12 TS2339 [ERROR]: Property 'PerformanceEntry' does not exist on type 'typeof globalThis'. globalThis.PerformanceEntry ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1232:12 TS2339 [ERROR]: Property 'PerformanceEntry' does not exist on type 'typeof globalThis'. globalThis.PerformanceEntry.prototype.duration ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1233:12 TS2339 [ERROR]: Property 'PerformanceEntry' does not exist on type 'typeof globalThis'. globalThis.PerformanceEntry.prototype.entryType ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1234:12 TS2339 [ERROR]: Property 'PerformanceEntry' does not exist on type 'typeof globalThis'. globalThis.PerformanceEntry.prototype.name ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1235:12 TS2339 [ERROR]: Property 'PerformanceEntry' does not exist on type 'typeof globalThis'. globalThis.PerformanceEntry.prototype.startTime ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1236:12 TS2339 [ERROR]: Property 'PerformanceEntry' does not exist on type 'typeof globalThis'. globalThis.PerformanceEntry.prototype.toJSON ~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1237:12 TS2339 [ERROR]: Property 'PerformanceMark' does not exist on type 'typeof globalThis'. globalThis.PerformanceMark ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1238:12 TS2339 [ERROR]: Property 'PerformanceMark' does not exist on type 'typeof globalThis'. globalThis.PerformanceMark.prototype.constructor ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1239:12 TS2339 [ERROR]: Property 'PerformanceMark' does not exist on type 'typeof globalThis'. globalThis.PerformanceMark.prototype.detail ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1240:12 TS2339 [ERROR]: Property 'PerformanceMark' does not exist on type 'typeof globalThis'. globalThis.PerformanceMark.prototype.duration ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1241:12 TS2339 [ERROR]: Property 'PerformanceMark' does not exist on type 'typeof globalThis'. globalThis.PerformanceMark.prototype.entryType ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1242:12 TS2339 [ERROR]: Property 'PerformanceMark' does not exist on type 'typeof globalThis'. globalThis.PerformanceMark.prototype.name ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1243:12 TS2339 [ERROR]: Property 'PerformanceMark' does not exist on type 'typeof globalThis'. globalThis.PerformanceMark.prototype.startTime ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1244:12 TS2339 [ERROR]: Property 'PerformanceMark' does not exist on type 'typeof globalThis'. globalThis.PerformanceMark.prototype.toJSON ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1245:12 TS2339 [ERROR]: Property 'PerformanceMeasure' does not exist on type 'typeof globalThis'. globalThis.PerformanceMeasure ~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1246:12 TS2339 [ERROR]: Property 'PerformanceMeasure' does not exist on type 'typeof globalThis'. globalThis.PerformanceMeasure.prototype.constructor ~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1247:12 TS2339 [ERROR]: Property 'PerformanceMeasure' does not exist on type 'typeof globalThis'. globalThis.PerformanceMeasure.prototype.detail ~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1248:12 TS2339 [ERROR]: Property 'PerformanceMeasure' does not exist on type 'typeof globalThis'. globalThis.PerformanceMeasure.prototype.duration ~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1249:12 TS2339 [ERROR]: Property 'PerformanceMeasure' does not exist on type 'typeof globalThis'. globalThis.PerformanceMeasure.prototype.entryType ~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1250:12 TS2339 [ERROR]: Property 'PerformanceMeasure' does not exist on type 'typeof globalThis'. globalThis.PerformanceMeasure.prototype.name ~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1251:12 TS2339 [ERROR]: Property 'PerformanceMeasure' does not exist on type 'typeof globalThis'. globalThis.PerformanceMeasure.prototype.startTime ~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1252:12 TS2339 [ERROR]: Property 'PerformanceMeasure' does not exist on type 'typeof globalThis'. globalThis.PerformanceMeasure.prototype.toJSON ~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1253:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1254:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.AT_TARGET ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1255:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.BUBBLING_PHASE ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1256:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.CAPTURING_PHASE ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1257:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.NONE ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1258:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.bubbles ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1259:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.cancelBubble ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1260:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.cancelable ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1261:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.composed ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1262:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.composedPath ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1263:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.constructor ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1264:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.currentTarget ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1265:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.defaultPrevented ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1266:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.eventPhase ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1267:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.initialized ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1268:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.preventDefault ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1269:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.returnValue ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1270:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.srcElement ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1271:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.stopImmediatePropagation ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1272:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.stopPropagation ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1273:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.target ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1274:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.timeStamp ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1275:12 TS2339 [ERROR]: Property 'ProgressEvent' does not exist on type 'typeof globalThis'. globalThis.ProgressEvent.prototype.type ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1276:12 TS2339 [ERROR]: Property 'values' does not exist on type 'ReadableStream<any>'. globalThis.ReadableStream.prototype.values ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1307:37 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.ReadableStreamBYOBReader ~~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1308:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.ReadableStreamBYOBReader.prototype.cancel ~~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1309:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.ReadableStreamBYOBReader.prototype.closed ~~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1310:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.ReadableStreamBYOBReader.prototype.read ~~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1311:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.ReadableStreamBYOBReader.prototype.releaseLock ~~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1312:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.ReadableStreamBYOBRequest ~~~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1313:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.ReadableStreamBYOBRequest.prototype.respond ~~~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1314:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.ReadableStreamBYOBRequest.prototype.respondWithNewView ~~~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1315:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.ReadableStreamBYOBRequest.prototype.view ~~~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1316:12 TS2339 [ERROR]: Property '$' does not exist on type 'RegExpConstructor'. globalThis.RegExp.$& ^ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1346:19 TS2363 [ERROR]: The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type. globalThis.RegExp["$'"] ~~~~~~~~~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1347:1 TS2339 [ERROR]: Property 'hasIndices' does not exist on type 'RegExp'. globalThis.RegExp.prototype.hasIndices ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1369:29 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1378:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.arrayBuffer ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1379:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.blob ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1380:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.body ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1381:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.bodyUsed ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1382:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.clone ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1383:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.formData ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1384:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.headers ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1385:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.json ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1386:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.method ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1387:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.redirect ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1388:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.signal ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1389:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.text ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1390:12 TS2339 [ERROR]: Property 'Request' does not exist on type 'typeof globalThis'. globalThis.Request.prototype.url ~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1391:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1392:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.error ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1393:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.arrayBuffer ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1394:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.blob ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1395:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.body ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1396:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.bodyUsed ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1397:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.clone ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1398:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.formData ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1399:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.headers ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1400:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.json ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1401:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.ok ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1402:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.redirected ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1403:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.status ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1404:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.statusText ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1405:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.text ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1406:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.type ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1407:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.prototype.url ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1408:12 TS2339 [ERROR]: Property 'Response' does not exist on type 'typeof globalThis'. globalThis.Response.redirect ~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1409:12 TS2339 [ERROR]: Property 'prototype' does not exist on type 'TransformStreamDefaultController<any>'. globalThis.TransformStreamDefaultController.prototype.desiredSize ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1543:45 TS2339 [ERROR]: Property 'prototype' does not exist on type 'TransformStreamDefaultController<any>'. globalThis.TransformStreamDefaultController.prototype.enqueue ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1544:45 TS2339 [ERROR]: Property 'prototype' does not exist on type 'TransformStreamDefaultController<any>'. globalThis.TransformStreamDefaultController.prototype.error ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1545:45 TS2339 [ERROR]: Property 'prototype' does not exist on type 'TransformStreamDefaultController<any>'. globalThis.TransformStreamDefaultController.prototype.terminate ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1546:45 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1557:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.createObjectURL ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1558:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.hash ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1559:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.host ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1560:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.hostname ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1561:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.href ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1562:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.origin ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1563:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.password ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1564:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.pathname ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1565:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.port ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1566:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.protocol ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1567:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.search ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1568:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.searchParams ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1569:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.toJSON ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1570:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.toString ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1571:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.prototype.username ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1572:12 TS2339 [ERROR]: Property 'URL' does not exist on type 'typeof globalThis'. globalThis.URL.revokeObjectURL ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1573:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1574:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.exec ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1575:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.hash ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1576:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.hostname ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1577:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.password ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1578:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.pathname ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1579:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.port ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1580:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.protocol ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1581:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.search ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1582:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.test ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1583:12 TS2339 [ERROR]: Property 'URLPattern' does not exist on type 'typeof globalThis'. globalThis.URLPattern.prototype.username ~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1584:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1585:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.append ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1586:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.delete ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1587:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.entries ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1588:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.forEach ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1589:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.get ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1590:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.getAll ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1591:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.has ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1592:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.keys ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1593:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.set ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1594:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.sort ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1595:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.toString ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1596:12 TS2339 [ERROR]: Property 'URLSearchParams' does not exist on type 'typeof globalThis'. globalThis.URLSearchParams.prototype.values ~~~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1597:12 TS2339 [ERROR]: Property 'findLastIndex' does not exist on type 'Uint16Array'. globalThis.Uint16Array.prototype.findLastIndex ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1614:34 TS2339 [ERROR]: Property 'findLastIndex' does not exist on type 'Uint32Array'. globalThis.Uint32Array.prototype.findLastIndex ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1650:34 TS2339 [ERROR]: Property 'findLastIndex' does not exist on type 'Uint8ClampedArray'. globalThis.Uint8ClampedArray.prototype.findLastIndex ~~~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1722:40 TS2339 [ERROR]: Property 'Exception' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.Exception ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1758:24 TS2339 [ERROR]: Property 'Exception' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.Exception.prototype.constructor ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1759:24 TS2339 [ERROR]: Property 'Exception' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.Exception.prototype.message ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1760:24 TS2339 [ERROR]: Property 'Exception' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.Exception.prototype.name ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1761:24 TS2339 [ERROR]: Property 'Exception' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.Exception.prototype.toString ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1762:24 TS2339 [ERROR]: Property 'Tag' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.Tag ~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1790:24 TS2339 [ERROR]: Property 'WebAssembly' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.WebAssembly.Exception.prototype.getArg ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1791:24 TS2339 [ERROR]: Property 'WebAssembly' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.WebAssembly.Exception.prototype.is ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1792:24 TS2339 [ERROR]: Property 'WebAssembly' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.WebAssembly.Exception.prototype.message ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1793:24 TS2339 [ERROR]: Property 'WebAssembly' does not exist on type 'typeof WebAssembly'. globalThis.WebAssembly.WebAssembly.Exception.prototype.name ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1794:24 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1800:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.CLOSED ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1801:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.CLOSING ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1802:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.CONNECTING ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1803:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.OPEN ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1804:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.CLOSED ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1805:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.CLOSING ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1806:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.CONNECTING ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1807:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.OPEN ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1808:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.addEventListener ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1809:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.binaryType ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1810:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.bufferedAmount ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1811:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.close ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1812:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.constructor ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1813:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.dispatchEvent ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1814:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.extensions ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1815:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.getParent ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1816:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.onclose ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1817:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.onerror ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1818:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.onmessage ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1819:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.onopen ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1820:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.protocol ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1821:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.readyState ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1822:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.removeEventListener ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1823:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.send ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1824:12 TS2339 [ERROR]: Property 'WebSocket' does not exist on type 'typeof globalThis'. globalThis.WebSocket.prototype.url ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1825:12 TS2339 [ERROR]: Property 'Window' does not exist on type 'typeof globalThis'. globalThis.Window ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1826:12 TS2339 [ERROR]: Property 'Window' does not exist on type 'typeof globalThis'. globalThis.Window.prototype.addEventListener ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1827:12 TS2339 [ERROR]: Property 'Window' does not exist on type 'typeof globalThis'. globalThis.Window.prototype.constructor ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1828:12 TS2339 [ERROR]: Property 'Window' does not exist on type 'typeof globalThis'. globalThis.Window.prototype.dispatchEvent ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1829:12 TS2339 [ERROR]: Property 'Window' does not exist on type 'typeof globalThis'. globalThis.Window.prototype.getParent ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1830:12 TS2339 [ERROR]: Property 'Window' does not exist on type 'typeof globalThis'. globalThis.Window.prototype.removeEventListener ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1831:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1832:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.addEventListener ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1833:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.constructor ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1834:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.dispatchEvent ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1835:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.getParent ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1836:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.onerror ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1837:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.onmessage ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1838:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.onmessageerror ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1839:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.postMessage ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1840:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.removeEventListener ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1841:12 TS2339 [ERROR]: Property 'Worker' does not exist on type 'typeof globalThis'. globalThis.Worker.prototype.terminate ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1842:12 TS2339 [ERROR]: Property 'close' does not exist on type 'WritableStream<any>'. globalThis.WritableStream.prototype.close ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1845:37 TS2339 [ERROR]: Property 'prototype' does not exist on type 'WritableStreamDefaultController'. globalThis.WritableStreamDefaultController.prototype.error ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1849:44 TS2339 [ERROR]: Property 'prototype' does not exist on type 'WritableStreamDefaultController'. globalThis.WritableStreamDefaultController.prototype.signal ~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1850:44 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.close ~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1865:12 TS7017 [ERROR]: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature. globalThis.closed ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1866:12 TS2339 [ERROR]: Property 'indentLevel' does not exist on type 'Console'. globalThis.console.indentLevel ~~~~~~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1879:20 TS2339 [ERROR]: Property 'toJSON' does not exist on type 'Performance'. globalThis.performance.toJSON ~~~~~~ at file:///C:/Users/azusa/work/deno/test/tmp.ts:1926:24 Found 541 errors. ``` </div> </details> Related: #12484