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',
|
|
}
|
|
}
|
|
|
|
} |