From bc52ef6d6952ed4425b3e92a78a606b64600a94d Mon Sep 17 00:00:00 2001 From: Joseph Werle Date: Tue, 9 Jul 2024 18:31:59 +0200 Subject: [PATCH] chore(api): generate types --- api/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/index.d.ts b/api/index.d.ts index eb64e9f8e5..9c999dcdad 100644 --- a/api/index.d.ts +++ b/api/index.d.ts @@ -7963,10 +7963,10 @@ declare module "socket:shared-worker/index" { export class SharedWorker extends EventTarget { /** * `SharedWorker` class constructor. - * @param {string} aURL + * @param {string|URL|Blob} aURL * @param {string|object=} [nameOrOptions] */ - constructor(aURL: string, nameOrOptions?: (string | object) | undefined); + constructor(aURL: string | URL | Blob, nameOrOptions?: (string | object) | undefined); set onerror(onerror: any); get onerror(): any; get ready(): any;