magnus-cli
Version:
Command line tool to pull and push source code files from a Rock RMS server
12 lines (11 loc) • 446 B
TypeScript
/**
* Change the current working directory and save it to a local config file
* @param {string} directoryPath - Path to change to
* @returns {Promise<void>}
*/
export declare function changeDirectory(directoryPath: string): Promise<void>;
/**
* Get the current directory from the local config file
* @returns {Promise<string>} The current directory path or '/' if not set
*/
export declare function getCurrentDirectory(): Promise<string>;