mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-03 08:17:50 +08:00
28 lines
771 B
TypeScript
28 lines
771 B
TypeScript
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> {}
|