UNPKG

ant-design-x-vue-next

Version:

Ant Design X for Vue — community continuation aligned with @ant-design/x

14 lines (13 loc) 409 B
import Latex from './Latex'; import type { LatexOption } from './Latex'; export type { LatexOption }; export type PluginsType = { /** * @desc 渲染数学公式 Latex 语法 * @descEN Rendering mathematical formulas using Latex syntax */ Latex: (options?: LatexOption) => ReturnType<typeof Latex>; }; export declare const plugins: PluginsType; export { Latex }; export default plugins;