/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { TypedArray } from "./TypedArray"; /** * Creates a new TypedArray with the widest type among the given sources, * filled with the provided values. Use when combining multiple vectors * (e.g. a * b) so output precision matches the widest input. */ export declare function createTypedArrayFrom(sources: TypedArray[], values: number[]): TypedArray; //# sourceMappingURL=TypedArrayUtils.d.ts.map