mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-21 15:28:09 +08:00
15 lines
218 B
TypeScript
15 lines
218 B
TypeScript
import { createNode } from '@tiptap/core'
|
|
|
|
const Text = createNode({
|
|
name: 'text',
|
|
group: 'inline',
|
|
})
|
|
|
|
export default Text
|
|
|
|
declare module '@tiptap/core' {
|
|
interface AllExtensions {
|
|
Text: typeof Text,
|
|
}
|
|
}
|