/** * Model: Vector * * THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT. * */ /** * A 2d vector. */ export interface Vector { /** X coordinate of the vector. */ x: number; /** Y coordinate of the vector. */ y: number; } //# sourceMappingURL=vector.d.ts.map