mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
import { Plugin } from 'ckeditor5/src/core';
|
|
import FileUploadEditing from './src/fileuploadediting';
|
|
|
|
export default class Uploadfileplugin extends Plugin {
|
|
static get requires() {
|
|
return [ FileUploadEditing ];
|
|
}
|
|
|
|
static get pluginName() {
|
|
return 'fileUploadPlugin';
|
|
}
|
|
}
|