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