react-latex-editor
Version:
A powerful React rich text editor with mathematical equation support, built on TipTap with MathLive integration
12 lines • 391 B
TypeScript
import { Mark } from '@tiptap/core';
declare module "@tiptap/core" {
interface Commands<ReturnType> {
backgroundColor: {
setBackgroundColor: (color: string) => ReturnType;
unsetBackgroundColor: () => ReturnType;
};
}
}
declare const BackgroundColor: Mark<any, any>;
export default BackgroundColor;
//# sourceMappingURL=BackgroundColor.d.ts.map