@mlightcad/mtext-renderer 0.10.10 → 0.10.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -0
- package/dist/index.umd.cjs +6 -6
- package/lib/index.d.ts +1 -0
- package/lib/shxParser.d.ts +9 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Re-exports from @mlightcad/shx-parser so consumers can use SHX parsing utilities
|
|
3
|
+
* (e.g. character-map SVG preview) without a direct shx-parser dependency.
|
|
4
|
+
*
|
|
5
|
+
* `ShxParserFont` is the parser library font class; this package also exports a
|
|
6
|
+
* renderer-facing `ShxFont` wrapper under `./font/shxFont`.
|
|
7
|
+
*/
|
|
8
|
+
export { ShxFont as ShxParserFont } from '@mlightcad/shx-parser';
|
|
9
|
+
export type { ShxFontData } from '@mlightcad/shx-parser';
|