blob: a6c3f5ed9f69522457c74d12de025c3814d215a8 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://github.com/WICG/storage-buckets
enum StorageBucketDurability {
"strict",
"relaxed"
};
dictionary StorageBucketOptions {
DOMString? title = null;
boolean persisted = false;
StorageBucketDurability durability = "relaxed";
unsigned long long? quota = null;
DOMTimeStamp? expires = null;
};