/** * Adapted from `get-monorepo-packages` by Lucas Azzola * @license MIT * @see https://github.com/azz/get-monorepo-packages/ */ import type { PackageJSON } from './Manifest'; interface PackageRecord { location: string; package: PackageJSON; } /** * get all the package json manifests in a repo, * whether a single package repo, or a monorepo. * @param rootDir path to the root package of the monorepo, or the package */ export declare function getAllPackages(rootDir: string): PackageRecord[]; export {};