refactor: exports

This commit is contained in:
cha0s 2021-01-21 19:28:08 -06:00
parent 2793d99ab5
commit c65ef534ce
2 changed files with 6 additions and 6 deletions

View File

@ -1,2 +1,8 @@
export {default as Mixin} from './mixin';
export {
default as Packer,
packToUint32,
unpackFromUint32,
} from './packer';
export {default as Range} from './range';
export * from './vector';

View File

@ -374,9 +374,3 @@ export function fromObject(object) {
export function toObject(v) {
return {x: v[0], y: v[1]};
}
export {
default as Packer,
packToUint32,
unpackFromUint32,
} from './packer';