@interopio/iocd-cli
Version:
CLI tool for setting up, building and packaging io.Connect Desktop platforms
19 lines • 873 B
TypeScript
export declare class PathUtils {
/** Returns the root directory path of the project (not the cli) */
static getRootDir(): string;
static getComponentsDir(): string;
static getModificationsDir(): string;
static getDistDir(): string;
static getConfigDir(): string;
static getComponentDir(componentName: "iocd" | "bbg3" | "_temp"): string;
static getModificationDir(componentName: string): string;
/** On iocd root dir. Note that on mac os this is Contents inside the app bundle (and not the app bundle itself) */
static getIOCDDir(): string;
static getIOCDResourcesDir(): string;
static getIOCDAssetsDir(): string;
static getIOCDConfigDir(): string;
static getIOCDExePath(): string;
/** MacOS only - gets the path to the .app bundle */
static getIOCDAppBundlePath(): string;
}
//# sourceMappingURL=path.d.ts.map