UNPKG

@churchapps/apphelper-markdown

Version:

ChurchApps markdown/lexical editor components

10 lines (9 loc) 417 B
interface Props { blockType: string; onFormatHeading: (tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6") => void; onFormatParagraph: () => void; onFormatCode: () => void; onApplyFontSize: (size: string) => void; } export declare function BlockAndFontControls({ blockType, onFormatHeading, onFormatParagraph, onFormatCode, onApplyFontSize }: Props): import("react/jsx-runtime").JSX.Element; export {};