UNPKG
@aldy505/kruonis
Version:
latest (0.0.1)
0.0.1
A tool to perform benchmarks on TS
github.com/most-inesctec/kruonis
most-inesctec/kruonis
@aldy505/kruonis
/
dist
/
Stats
/
Stat.d.ts
10 lines
(9 loc)
•
214 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * A generic stat to be obtained from a list of values */
export
interface
Stat
{
/** * Calculate the given stat from a list of values */
calculate
(
values
:
Array
<
number
>):
number
; }