@uva-glass/component-library
Version:
React components UvA
10 lines (9 loc) • 328 B
TypeScript
import { Actions } from './TableCellContextMenu';
interface TablePluginProps {
isActive: boolean;
}
export interface TableMutation {
mutateTable: (type: Actions) => void;
}
export declare const TablePlugin: import('react').ForwardRefExoticComponent<TablePluginProps & import('react').RefAttributes<unknown>>;
export {};