UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

12 lines (11 loc) 410 B
import Folder from "./Folder"; import StorageBase from "./StorageBase"; import IStorage from "./IStorage"; export default class Storage extends StorageBase implements IStorage { rootFolder: Folder; static readonly folderDelimiter = "/"; constructor(); joinPath(pathA: string, pathB: string): string; static getParentFolderPath(path: string): string; getAvailable(): Promise<boolean>; }