1.0.2 • Published 5 years ago

typed-tuple-type v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

npm version

typed-tuple-type

a type utility to apply tuple feature to TypedArray such as Float32Array in TypeScript context

What typed-tuple-type is

const vector3 = new Float32Array(3).fill(0);
vector3[0] // 0
vector3[1] // 0
vector3[2] // 0
vector3[3] // undefined

let vector2: Float32Tuple<2>;
vector2 = new Float32Array(1); // Error
vector2 = new Float32Array(2); // OK
vector2 = new Float32Array(3); // OK

Installation

npm i -D typed-tuple-type

tsconfig.json

To load typed-tuple-type, add "node_modules/typed-tuple-type" to typeRoots in your tsconfig.json

{
  "compilerOptions": {
    "typeRoots": [
      "node_modules/@types",
      "node_modules/typed-tuple-type"
    ]
  },
}