/** * @class VectorE1 */ interface VectorE1 { /** * The Cartesian x-coordinate. * @property x * @type number */ x: number; } export default VectorE1;