mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-19 13:47:51 +08:00
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,
|
||
|
}
|
||
|
}
|