UNPKG
katex
Version:
latest (0.17.0)
0.17.0
0.16.47
0.16.46
0.16.45
0.16.44
0.16.43
0.16.42
0.16.41
0.16.40
0.16.39
0.16.38
0.16.37
0.16.36
0.16.35
0.16.34
0.16.33
0.16.32
0.16.31
0.16.30
0.16.29
0.16.28
0.16.27
0.16.26
0.16.25
0.16.24
0.16.23
0.16.22
0.16.21
0.16.20
0.16.19
0.16.18
0.16.17
0.16.16
0.16.15
0.16.14
0.16.13
0.16.12
0.16.11
0.16.10
0.16.9
0.16.8
0.16.7
0.16.6
0.16.5
0.16.4
0.16.3
0.16.2
0.16.1
0.16.0
0.15.6
0.15.5
0.15.4
0.15.3
0.15.2
0.15.1
0.15.0
0.14.1
0.14.0
0.13.24
0.13.23
0.13.22
0.13.21
0.13.20
0.13.19
0.13.18
0.13.17
0.13.16
0.13.14
0.13.13
0.13.12
0.13.11
0.13.10
0.13.9
0.13.8
0.13.7
0.13.6
0.13.5
0.13.4
0.13.3
0.13.2
0.13.1
0.13.0
0.12.0
0.11.1
0.11.0
0.10.2
0.10.1
0.10.0
0.10.0-rc.1
0.10.0-rc
0.10.0-beta
0.10.0-alpha
0.9.0
0.9.0-beta1
0.9.0-beta
0.9.0-alpha2
0.9.0-alpha1
0.9.0-alpha
0.8.3
0.8.2
0.8.1
0.8.0
0.7.1
0.7.0
0.7.0-pre
0.6.0
0.5.1
0.5.0
0.4.3
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
Fast math typesetting for the web.
katex.org
KaTeX/KaTeX
katex
/
src
/
fontMetricsData.d.ts
9 lines
(5 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
CharacterMetricsTuple
,
FontName
}
from
"./types/fonts"
;
type
FontMetrics
=
Record
<
number
,
CharacterMetricsTuple
>;
declare
const
fontMetricsData
:
Record
<
FontName
,
FontMetrics
> &
Record
<
string
,
FontMetrics
>;
export
default
fontMetricsData;