2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-30 13:24:28 -06:00

Stricter typings for the onSuccess and onError calls

This commit is contained in:
Jeroen Akkerman 2019-07-24 14:26:11 +02:00
parent 0a5b0d3ac4
commit 509763f3b2
2 changed files with 5 additions and 3 deletions

View File

@ -92,8 +92,10 @@ const editorImagesCustom = new EasyMDE({
imageAccept: 'image/png, image/bmp',
imageCSRFToken: undefined,
imageMaxSize: 10485760,
imageUploadFunction: (file: File, onSuccess: Function, onError: Function) => {
console.log(file)
imageUploadFunction: (file: File, onSuccess, onError) => {
console.log(file);
onSuccess('http://image.url/9.png');
onError('Failed because reasons.');
},
imageTexts: {
sbInit: 'Drag & drop images!',

2
types/easymde.d.ts vendored
View File

@ -134,7 +134,7 @@ declare namespace EasyMDE {
uploadImage?: boolean;
imageMaxSize?: number;
imageAccept?: string;
imageUploadFunction?: (file: File, onSuccess: Function, onError: Function) => void;
imageUploadFunction?: (file: File, onSuccess: (url: string) => void, onError: (error: string) => void) => void;
imageUploadEndpoint?: string;
imageCSRFToken?: string;
imageTexts?: ImageTextsOptions;