12 lines
200 B
TypeScript
12 lines
200 B
TypeScript
import { Node } from '@tiptap/core'
|
|
|
|
export const TableCell = Node.create({
|
|
name: 'tableCell',
|
|
})
|
|
|
|
declare module '@tiptap/core' {
|
|
interface AllExtensions {
|
|
TableCell: typeof TableCell,
|
|
}
|
|
}
|