editcrafter
Version:
To use **EditCrafter** with Tailwind CSS, you need to set up Tailwind CSS in your project. Here's a step-by-step guide to help you integrate Tailwind CSS and customize your `tailwind.config.js` file for use with **EditCrafter**.
10 lines (9 loc) • 599 B
TypeScript
import { TableOptions } from '@tiptap/extension-table';
import { TableHeader } from '@tiptap/extension-table-header';
declare const CustomTableCell: import('@tiptap/core').Node<import('@tiptap/extension-table-cell').TableCellOptions, any>;
declare const CustomTableRow: import('@tiptap/core').Node<import('@tiptap/extension-table-row').TableRowOptions, any>;
interface CustomTableOptions extends TableOptions {
HTMLAttributes: Record<string, any>;
}
export declare const CustomTable: import('@tiptap/core').Node<CustomTableOptions, any>;
export { CustomTableCell, CustomTableRow, TableHeader };