UNPKG

tex2typst

Version:

JavaScript library for converting TeX code to Typst

4 lines (3 loc) 246 B
import { TexNode, TypstNode, Tex2TypstOptions } from "./types"; export declare function convert_tex_node_to_typst(node: TexNode, options?: Tex2TypstOptions): TypstNode; export declare function convert_typst_node_to_tex(node: TypstNode): TexNode;