Interface StorageManager
interface StorageManager {
estimate(): Promise<StorageEstimate>;
getDirectory(): Promise<FileSystemDirectoryHandle>;
persist(): Promise<boolean>;
persisted(): Promise<boolean>;
}
estimate(): Promise<StorageEstimate>;
getDirectory(): Promise<FileSystemDirectoryHandle>;
persist(): Promise<boolean>;
persisted(): Promise<boolean>;
}
 Index
Methods
 Methods
estimate
- estimate(): Promise<StorageEstimate>
- Returns Promise<StorageEstimate>
getDirectory 
- getDirectory(): Promise<FileSystemDirectoryHandle>
- Returns Promise<FileSystemDirectoryHandle>
Available only in secure contexts.
MDN Reference