// GENERATED CONTENT - DO NOT EDIT // Content of this file was automatically extracted from the // "Storage Standard" spec. // See: https://storage.spec.whatwg.org/ [SecureContext] interface mixin NavigatorStorage { readonly attribute StorageManager storage; }; Navigator includes NavigatorStorage; WorkerNavigator includes NavigatorStorage; [SecureContext, Exposed=(Window,Worker)] interface StorageManager { Promise persisted(); [Exposed=Window] Promise persist(); Promise estimate(); }; dictionary StorageEstimate { unsigned long long usage; unsigned long long quota; };