2023-07-01 03:03:49 +08:00
|
|
|
export * from './CommandManager.js'
|
|
|
|
export * from './Editor.js'
|
|
|
|
export * from './Extension.js'
|
|
|
|
export * as extensions from './extensions/index.js'
|
|
|
|
export * from './helpers/index.js'
|
|
|
|
export * from './InputRule.js'
|
|
|
|
export * from './inputRules/index.js'
|
|
|
|
export * from './Mark.js'
|
|
|
|
export * from './Node.js'
|
|
|
|
export * from './NodeView.js'
|
|
|
|
export * from './PasteRule.js'
|
|
|
|
export * from './pasteRules/index.js'
|
|
|
|
export * from './Tracker.js'
|
|
|
|
export * from './types.js'
|
|
|
|
export * from './utilities/index.js'
|
2020-11-17 04:54:40 +08:00
|
|
|
|
2021-06-05 03:56:29 +08:00
|
|
|
// eslint-disable-next-line
|
|
|
|
export interface Commands<ReturnType = any> {}
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
// eslint-disable-next-line
|
2021-10-22 14:52:54 +08:00
|
|
|
export interface ExtensionConfig<Options = any, Storage = any> {}
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
// eslint-disable-next-line
|
2021-10-22 14:52:54 +08:00
|
|
|
export interface NodeConfig<Options = any, Storage = any> {}
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
// eslint-disable-next-line
|
2021-10-22 14:52:54 +08:00
|
|
|
export interface MarkConfig<Options = any, Storage = any> {}
|