Skip to content

Commit

Permalink
Merge pull request #162 from WICG/yao-switch-to-sequence
Browse files Browse the repository at this point in the history
[spec] Use sequence instead of FrozenArray
  • Loading branch information
pythagoraskitty committed Jun 21, 2024
2 parents 919562d + aa5bfd4 commit 08a4efe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec.bs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ The {{SharedStorageWorklet}} object allows developers to supply [=module scripts
[Exposed=(Window)]
interface SharedStorageWorklet : Worklet {
Promise<SharedStorageResponse> selectURL(DOMString name,
FrozenArray<SharedStorageUrlWithMetadata> urls,
sequence<SharedStorageUrlWithMetadata> urls,
optional SharedStorageRunOperationMethodOptions options = {});
Promise<any> run(DOMString name,
optional SharedStorageRunOperationMethodOptions options = {});
Expand Down Expand Up @@ -995,7 +995,7 @@ On the other hand, methods for getting data from the [=shared storage database=]
[Exposed=(Window)]
interface WindowSharedStorage : SharedStorage {
Promise<SharedStorageResponse> selectURL(DOMString name,
FrozenArray<SharedStorageUrlWithMetadata> urls,
sequence<SharedStorageUrlWithMetadata> urls,
optional SharedStorageRunOperationMethodOptions options = {});
Promise<any> run(DOMString name,
optional SharedStorageRunOperationMethodOptions options = {});
Expand Down

0 comments on commit 08a4efe

Please sign in to comment.