From 332cf61086afc62733519e8118af326efcb1e4b1 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 17 May 2022 23:17:04 +0200 Subject: [PATCH] Add header size 4, 5 and 6 --- types/easymde.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/types/easymde.d.ts b/types/easymde.d.ts index 927c4b8..b153634 100644 --- a/types/easymde.d.ts +++ b/types/easymde.d.ts @@ -265,6 +265,9 @@ declare class EasyMDE { static toggleHeading1: (editor: EasyMDE) => void; static toggleHeading2: (editor: EasyMDE) => void; static toggleHeading3: (editor: EasyMDE) => void; + static toggleHeading4: (editor: EasyMDE) => void; + static toggleHeading5: (editor: EasyMDE) => void; + static toggleHeading6: (editor: EasyMDE) => void; static toggleCodeBlock: (editor: EasyMDE) => void; static toggleBlockquote: (editor: EasyMDE) => void; static toggleUnorderedList: (editor: EasyMDE) => void;