export type BinTree = { type: 'leaf'; leaf: T; } | { type: 'fork'; left: BinTree; right: BinTree; }; //# sourceMappingURL=BinTree.d.ts.map