refactor: restructure extensions
This commit is contained in:
15
packages/extension-document/src/document.ts
Normal file
15
packages/extension-document/src/document.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Node } from '@tiptap/core'
|
||||
|
||||
const Document = Node.create({
|
||||
name: 'document',
|
||||
topNode: true,
|
||||
content: 'block+',
|
||||
})
|
||||
|
||||
export default Document
|
||||
|
||||
declare module '@tiptap/core' {
|
||||
interface AllExtensions {
|
||||
Document: typeof Document,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user