mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-17 20:47:49 +08:00
11 lines
146 B
TypeScript
11 lines
146 B
TypeScript
|
import { Node } from '@tiptap/core'
|
||
|
|
||
|
export default class Document extends Node {
|
||
|
|
||
|
name = 'document'
|
||
|
|
||
|
schema = {
|
||
|
content: 'block+',
|
||
|
}
|
||
|
|
||
|
}
|