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:
parent
0a5b0d3ac4
commit
509763f3b2
@ -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
2
types/easymde.d.ts
vendored
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user