Skip to content

Commit

Permalink
Update idl.md
Browse files Browse the repository at this point in the history
  • Loading branch information
arichiv authored Nov 6, 2023
1 parent 9df8bc0 commit d836c39
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions idl.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,27 @@ partial interface Document {
dictionary StorageAccessTypes {
boolean all = false;
boolean estimate = false;
boolean persisted = false;
boolean persist = false;
boolean sessionStorage = false;
boolean localStorage = false;
boolean indexedDB = false;
boolean locks = false;
boolean caches = false;
boolean getDirectory = false;
boolean estimate = false;
boolean createObjectURL = false;
boolean revokeObjectURL = false;
boolean BroadcastChannel = false;
boolean SharedWorker = false;
};
interface StorageAccessHandle {
Promise<StorageEstimate> estimate();
Promise<boolean> persisted();
Promise<boolean> persist();
readonly attribute Storage sessionStorage;
readonly attribute Storage localStorage;
readonly attribute IDBFactory indexedDB;
readonly attribute LockManager locks;
readonly attribute CacheStorage caches;
Promise<FileSystemDirectoryHandle> getDirectory();
Promise<StorageEstimate> estimate();
DOMString createObjectURL((Blob or MediaSource) obj);
undefined revokeObjectURL(DOMString url);
};
Expand Down

0 comments on commit d836c39

Please sign in to comment.