import { WorkspacePattern } from "./workspace.js"; /** * pnpm workspace globs from `pnpm-workspace.yaml`'s top-level `packages:` list. * Parsed with a vetted YAML parser (`yaml`) so both the block-sequence and * inline-flow (`packages: [a, b]`) forms — and any quoting/anchoring — resolve * to the same `packages` string array, instead of the prior line scanner that * handled only the two it special-cased. Malformed YAML degrades to `[]`. */ export declare function pnpmWorkspacePatterns(content: string): WorkspacePattern[]; //# sourceMappingURL=pnpm.d.ts.map