mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-21 07:18:05 +08:00
0c9ce26c02
This reverts commit 24c3a9abd3
.
# Conflicts:
# packages/core/src/Editor.ts
15 lines
213 B
TypeScript
15 lines
213 B
TypeScript
import { Node } from '@tiptap/core'
|
|
|
|
const Text = Node.create({
|
|
name: 'text',
|
|
group: 'inline',
|
|
})
|
|
|
|
export default Text
|
|
|
|
declare module '@tiptap/core' {
|
|
interface AllExtensions {
|
|
Text: typeof Text,
|
|
}
|
|
}
|