mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-22 08:07:50 +08:00
11 lines
136 B
TypeScript
11 lines
136 B
TypeScript
|
import { Node } from '@tiptap/core'
|
||
|
|
||
|
export default class Text extends Node {
|
||
|
|
||
|
name = 'text'
|
||
|
|
||
|
schema = {
|
||
|
group: 'inline',
|
||
|
}
|
||
|
|
||
|
}
|