tex2typst 0.3.0 → 0.3.1

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/README.md CHANGED
@@ -18,12 +18,12 @@ npm install tex2typst
18
18
  ## Or just loading it in a web page
19
19
 
20
20
  ```html
21
- <script src="https://cdn.jsdelivr.net/npm/tex2typst@0.3.0-beta-5/dist/tex2typst.min.js"></script>
21
+ <script src="https://cdn.jsdelivr.net/npm/tex2typst@0.3.0/dist/tex2typst.min.js"></script>
22
22
  <!-- or -->
23
- <script src="https://unpkg.com/tex2typst@0.3.0-beta-5/dist/tex2typst.min.js"></script>
23
+ <script src="https://unpkg.com/tex2typst@0.3.0/dist/tex2typst.min.js"></script>
24
24
  ```
25
25
 
26
- Replace `0.3.0-beta-5` with the latest version number in case this README is outdated.
26
+ Replace `0.3.0` with the latest version number in case this README is outdated.
27
27
 
28
28
 
29
29
  ## Usage
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Tex2TypstOptions } from "./types";
1
+ import type { Tex2TypstOptions } from "./types";
2
2
  import { symbolMap } from "./map";
3
3
  export declare function tex2typst(tex: string, options?: Tex2TypstOptions): string;
4
4
  export declare function typst2tex(typst: string): string;