Files
notesnook/packages/editor/dist/extensions/math/plugin/index.d.ts
2022-06-30 17:27:56 +05:00

10 lines
671 B
TypeScript

export { MathView, type ICursorPosObserver } from "./math-node-view";
export { mathPlugin, createMathView, type IMathPluginState, } from "./math-plugin";
export { mathSchemaSpec, createMathSchema } from "./math-schema";
export { mathBackspaceCmd } from "./plugins/math-backspace";
export { makeBlockMathInputRule, makeInlineMathInputRule, REGEX_BLOCK_MATH_DOLLARS, REGEX_INLINE_MATH_DOLLARS, REGEX_INLINE_MATH_DOLLARS_ESCAPED, } from "./plugins/math-input-rules";
export { mathSelectPlugin } from "./plugins/math-select";
export { insertMathCmd } from "./commands/insert-math-cmd";
export { mathSerializer } from "./utils/text-serializer";
export * from "./utils/types";