mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-29 08:19:34 +08:00
13 lines
157 B
TypeScript
13 lines
157 B
TypeScript
import { Node } from '@tiptap/core'
|
|
|
|
export default class Text extends Node {
|
|
|
|
name = 'text'
|
|
|
|
schema() {
|
|
return {
|
|
group: 'inline',
|
|
}
|
|
}
|
|
|
|
} |