UNPKG
matnml2svg
Version:
latest (0.1.0)
0.1.0
The MathJax wrapper to convert MML to SVG
github.com/Hwl98/MML-to-SVG
Hwl98/MML-to-SVG
matnml2svg
/
index.d.ts
10 lines
(8 loc)
•
212 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
declare
module
"mml-to-svg"
{
interface
options {
width
?:
number
,
ex
?:
number
,
em
?:
number
}
export
default
function
MMLToSVG
(
str
:
string
,
opts
?: options
):
string
; }