UNPKG

@vericus/slate-kit-basic-text-formatting-renderer

Version:

TODO: fill in this description later

14 lines 617 B
import * as React from "react"; import { Mark, Plugin } from "slate"; export interface Props { mark: Mark; children: JSX.Element; attributes: any; className?: string; } export declare function bold(props: Props): React.ReactElement<any, any> | null; export declare function italic(props: Props): React.ReactElement<any, any> | null; export declare function underline(props: Props): React.ReactElement<any, any> | null; export declare function strikethrough(props: Props): React.ReactElement<any, any> | null; export default function createRenderMark(): Plugin; //# sourceMappingURL=renderMark.d.ts.map