File size: 262 Bytes
bc20498 |
1 2 3 4 5 6 7 8 |
import * as util from '../../util';
import position from './position';
import bounds from './bounds';
import widthHeight from './width-height';
import edgePoints from './edge-points';
export default util.assign( {}, position, bounds, widthHeight, edgePoints );
|