init table, table-row and table-cell

This commit is contained in:
Hans Pagel
2021-01-20 23:42:01 +01:00
parent 85306e697d
commit 45ed1c7fc6
15 changed files with 244 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Node } from '@tiptap/core'
export const TableRow = Node.create({
name: 'tableRow',
})
declare module '@tiptap/core' {
interface AllExtensions {
TableRow: typeof TableRow,
}
}