import { LeafBranch } from './LeafBranch.js'; import { NodeBranch } from './NodeBranch.js'; export type Branch = NodeBranch | LeafBranch;