UNPKG
perfrunner-reporters
Version:
latest (0.13.0-alpha.1)
0.13.0-alpha.1
0.13.0-alpha.0
0.12.1-alpha.0
0.12.0-alpha.0
0.11.2-alpha.0
0.11.1-alpha.0
0.11.0-alpha.0
0.10.2
0.10.1
0.10.0
0.9.0
0.8.3
0.8.2
0.8.1
0.8.0
0.7.3
0.7.2
0.7.1
0.7.0
0.6.0
0.5.1
0.5.0
0.4.2
0.4.1
0.4.0
0.3.2
0.3.1
0.2.2
0.2.1
0.2.0
Home of the perfrunner reporters
github.com/Drag13/perfrunner
perfrunner-reporters
/
dist
/
reporters
/
md
/
format.d.ts
10 lines
(9 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Metrics
}
from
'./metrics'
;
declare
type
MdViewModel
=
Record
<
Metrics
,
string
> & {
ts
:
string
; };
declare
type
MdData
=
Record
<
Metrics
,
number
> & {
ts
:
number
; };
export
declare
const
createViewModel
:
(
data
:
MdData
[]
) =>
MdViewModel
[];
export
{};