$ cnpm install typedarray-dts
Type definitions for JavaScript typed arrays.
There are 9 typed array types in JavaScript:
It is not unusual to require a variable that is of a TypedArray type. However,
the JavaScript standard library type definitions do not include an abstract
TypedArray type. This package implements one.
This package does not implement functionality, only type definitions.
import { TypedArray } from "typedarray-dts";
function doSomething(x: TypedArray): void {
// IntelliSense now knows `x` is a `TypedArray`!
}
There are two other types provided by this package: SignedTypedArray and
UnsignedTypedArray:
import { SignedTypedArray, UnsignedTypedArray } from "typedarray-dts";
function doSomethingSigned(x: SignedTypedArray): void {
// `x` is a signed `TypedArray`!
}
function doSomethingUnsigned(x: UnsignedTypedArray): void {
// `x` is an unsigned `TypedArray`!
}
Refer to the LICENSE file for license information.
Copyright 2013 - present © cnpmjs.org | Home |