maxHeight option typings

pull/201/head
Nick Denry 4 years ago
parent d339c6af97
commit 2bd4b289b3

@ -165,6 +165,7 @@ const editorImagesCustom = new EasyMDE({
new EasyMDE({
sideBySideFullscreen: true,
maxHeight: false,
autosave: {
enabled: true,
delay: 2000,
@ -182,6 +183,7 @@ new EasyMDE({
new EasyMDE({
sideBySideFullscreen: false,
maxHeight: '500px',
toolbar: [
'bold',
'italic',

@ -172,6 +172,7 @@ declare namespace EasyMDE {
insertTexts?: InsertTextOptions;
lineWrapping?: boolean;
minHeight?: string;
maxHeight?: boolean | string;
parsingConfig?: ParsingOptions;
placeholder?: string;
previewClass?: string | ReadonlyArray<string>;

Loading…
Cancel
Save