DefinitelyTyped/types/compute-argmax/compute-argmax-tests.ts
Eric Crosson 1fa034cbd8 Add types for compute-argmax (#40313)
* Add types for compute-argmax

* Update types/compute-argmax/index.d.ts

Co-Authored-By: Dmitry Demensky <10235949+demensky@users.noreply.github.com>
2019-11-15 15:39:36 -08:00

5 lines
112 B
TypeScript

import compute = require('compute-argmax');
const data = [3, 2, 5, 2, 5];
const idx: number[] = compute(data);