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