active-table
Version:
Framework agnostic table component for editable data experience
12 lines • 498 B
TypeScript
import { FrameComponentsCellsColors } from './frameComponentsCellsColors';
import { FrameComponentsStyles, IndexColumnT } from './frameComponents';
interface FrameComponentsDisplayProps {
displayAddNewRow: boolean;
displayAddNewColumn: boolean;
displayIndexColumn: IndexColumnT;
}
export type FrameComponentsInternal = FrameComponentsStyles & FrameComponentsDisplayProps & {
cellColors: FrameComponentsCellsColors;
};
export {};
//# sourceMappingURL=frameComponentsInternal.d.ts.map