UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

21 lines 539 B
import type { ENumberIdentifier } from "../../runtime/rtti-interop.js"; import type { IInteropBindings } from "../emscripten/i-interop-bindings.js"; /** * @public */ export declare enum EVectorIdentifier { Vec2 = 0, Vec3 = 1, Vec4 = 2, Mat2 = 3, Mat3 = 4, Mat4 = 5, Range2d = 6 } /** * @public */ export interface ISharedVectorBindings extends IInteropBindings { _jsUtilCreateVec(numberId: ENumberIdentifier, vectorId: EVectorIdentifier): number; } //# sourceMappingURL=i-shared-vector-bindings.d.ts.map