tiptap/packages/tiptap-core/src/Extension.ts

53 lines
680 B
TypeScript
Raw Normal View History

2019-12-17 06:20:05 +08:00
import { Editor } from './Editor'
export default class Extension {
editor: any
options: { [key: string]: any } = {}
defaultOptions: { [key: string]: any } = {}
constructor(options = {}) {
this.options = {
...this.defaultOptions,
...options,
}
}
init(): any {
return null
}
bindEditor(editor: Editor): void {
this.editor = editor
}
get name(): any {
return null
}
get type(): any {
return 'extension'
}
get update(): any {
return () => {}
}
get plugins(): any {
return []
}
inputRules(): any {
return []
}
pasteRules(): any {
return []
}
keys(): any {
return {}
}
}