Skip to content

Commit

Permalink
Remove nullability from StorageBucketOptions members. (#118)
Browse files Browse the repository at this point in the history
They're already optional by default:
https://webidl.spec.whatwg.org/#dictionary-member-optional

Fixes: 114

Co-authored-by: Evan Stade <[email protected]>
  • Loading branch information
evanstade and Evan Stade authored Dec 19, 2023
1 parent fdca52c commit d87656b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ interface StorageBucketManager {

dictionary StorageBucketOptions {
boolean persisted = false;
unsigned long long? quota;
DOMHighResTimeStamp? expires;
unsigned long long quota;
DOMHighResTimeStamp expires;
};
</xmp>

Expand Down

0 comments on commit d87656b

Please sign in to comment.