mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-21 15:28:09 +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',
|
|
}
|
|
|
|
} |