Cell interface
Cell
interface is a base for built-in cell templates and your own, it has only one necessary property - type
.
Definition
interface Cell {
type: string;
groupId?: Id;
style?: CellStyle;
className?: string;
}
Cell
interface is a base for built-in cell templates and your own, it has only one necessary property - type
.
interface Cell {
type: string;
groupId?: Id;
style?: CellStyle;
className?: string;
}