Files
tiptap/packages/extension-table-cell/src/table-cell.ts
2021-01-22 20:01:01 +01:00

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,
}
}