mirror of
https://github.com/docmost/docmost.git
synced 2026-07-16 09:46:56 +10:00
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
import { TableRow as TiptapTableRow } from "@tiptap/extension-table";
|
|
|
|
export const TableRow = TiptapTableRow.extend({
|
|
allowGapCursor: false,
|
|
content: "(tableCell | tableHeader)*",
|
|
});
|