Skip to content

Commit

Permalink
chore(api): generate types
Browse files Browse the repository at this point in the history
  • Loading branch information
jwerle committed Jul 9, 2024
1 parent 5908c62 commit bc52ef6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit bc52ef6

Please sign in to comment.