export declare type IVector = IVectorData; export interface IVectorData { x?: number; y?: number; z?: number; [axis: string]: number | undefined; } export declare type IAxis = 'x' | 'y' | 'z'; export declare const AXES: IAxis[]; /** * TODO: Use one of IVector vs. IVectorData and deprecte other one */