myst-to-typst
Version:
Export from MyST mdast to Typst
8 lines • 317 B
TypeScript
import type { Root } from 'myst-spec';
import type { Plugin } from 'unified';
import type { VFile } from 'vfile';
import type { Options } from './types.js';
export type { TypstResult } from './types.js';
declare const plugin: Plugin<[Options?], Root, VFile>;
export default plugin;
//# sourceMappingURL=index.d.ts.map