You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
771 B
28 lines
771 B
3 years ago
|
export * from './CommandManager'
|
||
|
export * from './Editor'
|
||
|
export * from './Extension'
|
||
|
export * as extensions from './extensions'
|
||
|
export * from './helpers'
|
||
|
export * from './InputRule'
|
||
|
export * from './inputRules'
|
||
|
export * from './Mark'
|
||
|
export * from './Node'
|
||
|
export * from './NodeView'
|
||
|
export * from './PasteRule'
|
||
|
export * from './pasteRules'
|
||
|
export * from './Tracker'
|
||
|
export * from './types'
|
||
|
export * from './utilities'
|
||
|
|
||
|
// eslint-disable-next-line
|
||
|
export interface Commands<ReturnType = any> {}
|
||
|
|
||
|
// eslint-disable-next-line
|
||
|
export interface ExtensionConfig<Options = any, Storage = any> {}
|
||
|
|
||
|
// eslint-disable-next-line
|
||
|
export interface NodeConfig<Options = any, Storage = any> {}
|
||
|
|
||
|
// eslint-disable-next-line
|
||
|
export interface MarkConfig<Options = any, Storage = any> {}
|