UNPKG

workspace-pkgs

Version:
18 lines (15 loc) 386 B
/** * workspaceInfo * * @param cwd - the pkg path * @returns result - Promise\<string[] | null\> */ export declare function workspacePkgs(cwd?: string): Promise<string[] | null>; /** * workspaceInfoSync * * @param cwd - the pkg path * @returns result - string[] | null */ export declare function workspacePkgsSync(cwd?: string): string[] | null; export { }