UNPKG

@tobiasafischer/tiptap-extension-font-size

Version:

a fontsize implementation for tiptap which includes cursor size change

13 lines (12 loc) 309 B
import '@tiptap/extension-text-style'; declare module '@tiptap/core' { interface Commands<ReturnType> { fontSize: { /** * Set the font family */ setFontSize: (fontSize: string) => ReturnType; }; } } export declare const FontSize: any;