📄 index.d.ts
/home/palash/git/site/node_modules/is-typed-array/index.d.ts
Language: ts • Lines: 9
import type { TypedArray } from 'which-typed-array';

declare namespace isTypedArray {
    export { TypedArray };
}

declare function isTypedArray(value: unknown): value is isTypedArray.TypedArray;

export = isTypedArray;