/** * Minimal workspace boundary type for backwards compatibility * This is a stub - the full implementation can be added later if needed */ export interface WorkspaceBoundary { id: string; name: string; rootPath?: string; packageJsonPath: string; isRoot: boolean; packageData?: { name?: string; version?: string; workspaces?: string[]; }; } //# sourceMappingURL=workspace-boundaries.d.ts.map