UNPKG

workspace-projects

Version:
18 lines (15 loc) 394 B
/** * 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 { }