Skip to content

Commit

Permalink
fix: TS build error from ItemMetadata and Column intefaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jan 9, 2024
1 parent feb154c commit e8fd4c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/models/column.interface.ts
Expand Up @@ -60,7 +60,7 @@ export interface Column<TData = any> {
columnGroup?: string;

/** Column span in cell count or use `*` to span across the entire row */
colspan?: number | '*';
colspan?: number | string | '*';

/** CSS class to add to the column cell */
cssClass?: string;
Expand All @@ -84,7 +84,7 @@ export interface Column<TData = any> {
disableTooltip?: boolean;

/** Any inline editor function that implements Editor for the cell value or ColumnEditor */
editor?: Editor | { model?: Editor; };
editor?: Editor | { model?: Editor; } | null;

/** Editor number fixed decimal places */
editorFixedDecimalPlaces?: number;
Expand Down

0 comments on commit e8fd4c8

Please sign in to comment.