Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
Browse files Browse the repository at this point in the history
… fixup! fixup! fixup! Experimentally implement shared workers
  • Loading branch information
novemberborn committed May 11, 2020
1 parent 3a8bd2f commit d4b5a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ export namespace SharedWorker {

export type BroadcastMessage<Data = unknown> = {
readonly id: string;
replies: () => () => AsyncIterableIterator<ReceivedMessage<Data>>;
replies: () => AsyncIterableIterator<ReceivedMessage<Data>>;
};

export type PublishedMessage<Data = unknown> = {
readonly id: string;
replies: () => () => AsyncIterableIterator<ReceivedMessage<Data>>;
replies: () => AsyncIterableIterator<ReceivedMessage<Data>>;
};

export type ReceivedMessage<Data = unknown> = {
Expand Down

0 comments on commit d4b5a96

Please sign in to comment.