/**
* @namespace typesPoints
*/
/**
* @typedef {point[]} points - For 2D, an array of objects: {x,y,w}. For 1D, an array of objects: {x,w,densityProfile}.
*/
/**
* @typedef {point1D | point2D} point
*/
/**
* @typedef {number} point1D - a point in 1D, x coordinate in policy space.
* @memberof typesPoints
*/
/**
* @typedef {number[]} point2D - a point in 2D, [x,y] coordinates in policy space.
* @memberof typesPoints
*/
export default {}