//#region src/vector.d.ts type IntegerVector = Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array; type FloatVector = Float32Array | Float64Array; type Vector = number[] | IntegerVector | FloatVector; //#endregion export { FloatVector, IntegerVector, Vector }; //# sourceMappingURL=vector.d.ts.map