bettertend/frontend/node_modules/@tiptap/extension-table-cell/dist/table-cell.d.ts

15 lines
447 B
TypeScript

import { Node } from '@tiptap/core';
export interface TableCellOptions {
/**
* The HTML attributes for a table cell node.
* @default {}
* @example { class: 'foo' }
*/
HTMLAttributes: Record<string, any>;
}
/**
* This extension allows you to create table cells.
* @see https://www.tiptap.dev/api/nodes/table-cell
*/
export declare const TableCell: Node<TableCellOptions, any>;
//# sourceMappingURL=table-cell.d.ts.map