UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

16 lines (15 loc) 571 B
import BrowserFolder from "./BrowserFolder"; import StorageBase from "./StorageBase"; import IStorage from "./IStorage"; export default class BrowserStorage extends StorageBase implements IStorage { rootFolder: BrowserFolder; static isConfigured: boolean; /** * The name used to construct this storage instance. * Used for BrowserStorage pointer mode when transferring to web workers. */ readonly storageName: string | null; static ensureConfigured(): void; constructor(name: string | null); getAvailable(): Promise<boolean>; }