UNPKG
kruonis
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A tool to perform benchmarks on TS
github.com/most-inesctec/kruonis
most-inesctec/kruonis
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
; }