UNPKG

352 BPlain TextView Raw
1import { Quadtree } from './Quadtree';
2import { Rectangle } from './Rectangle';
3
4//This file only exports the "1.0" basics: Quadtree and Quadtree.Rectangle
5//UMD/browser: export everything under a 'Quadtree' namespace
6//@see https://github.com/rollup/rollup/issues/1044#issuecomment-253214545
7export default Object.assign(Quadtree, {
8 Rectangle,
9});
\No newline at end of file