diff --git a/types/easymde-test.ts b/types/easymde-test.ts index e9f886d..b4987c4 100644 --- a/types/easymde-test.ts +++ b/types/easymde-test.ts @@ -82,6 +82,7 @@ const editor2 = new EasyMDE({ name: 'link', action: 'https://github.com/Ionaru/easy-markdown-editor', className: 'fa fab fa-github', + text: 'A Custom Link', title: 'A Custom Link', noDisable: true, noMobile: true, diff --git a/types/easymde.d.ts b/types/easymde.d.ts index 351939a..7f3ce43 100644 --- a/types/easymde.d.ts +++ b/types/easymde.d.ts @@ -144,6 +144,7 @@ declare namespace EasyMDE { name: string; action: string | ((editor: EasyMDE) => void); className: string; + text?: string; title: string; noDisable?: boolean; noMobile?: boolean;