workspace-projects
Version:
A simple utility to get the workspace project list
18 lines (15 loc) • 394 B
TypeScript
/**
* workspaceInfo
*
* @param cwd - the pkg path
* @returns result - Promise\<string[] | null\>
*/
export declare function workspaceProjects(cwd?: string): Promise<string[] | null>;
/**
* workspaceInfoSync
*
* @param cwd - the pkg path
* @returns result - string[] | null
*/
export declare function workspaceProjectsSync(cwd?: string): string[] | null;
export { }