UNPKG
text-to-svg-hb
Version:
latest (1.0.0)
1.0.0
Convert text to SVG paths with HarfBuzz support for complex text shaping
text-to-svg-hb
/
dist
/
index.d.ts
4 lines
(3 loc)
•
222 B
TypeScript
View Raw
1
2
3
4
import
{
TextToSVGOptions
,
SVGResult
,
ShapedGlyph
}
from
'./types'
;
export
declare
function
textToSVG
(
text
:
string
,
options
:
TextToSVGOptions
):
Promise
<
SVGResult
>;
export
type
{
TextToSVGOptions
,
SVGResult
,
ShapedGlyph
};