UNPKG

@empathize/framework

Version:

Framework for Neutralino

49 lines (48 loc) 1.07 kB
export default class dir { protected static dirs: { temp: null; data: null; documents: null; pictures: null; music: null; video: null; downloads: null; }; protected static resolvePath(name: string): Promise<string>; /** * Current working directory */ static cwd: string; /** * Application path */ static app: string; /** * System temp directory path */ static temp: string; /** * System data directory path */ static get data(): Promise<string>; /** * System documents directory path */ static get documents(): Promise<string>; /** * System pictures directory path */ static get pictures(): Promise<string>; /** * System music directory path */ static get music(): Promise<string>; /** * System video directory path */ static get video(): Promise<string>; /** * System downloads directory path */ static get downloads(): Promise<string>; }