Skip to content

Commit

Permalink
Fixed #3245 - Column: ColumnBodyRowEditorOptions type is missing "ele…
Browse files Browse the repository at this point in the history
…ment" in type definition
  • Loading branch information
mertsincan committed Sep 6, 2022
1 parent 20b654a commit 382727e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions components/lib/column/column.d.ts
Expand Up @@ -54,11 +54,12 @@ interface ColumnBodyExpanderOptions {
onClick?(e: any): void;
className?: string;
iconClassName?: string;
element?: React.ReactNode;
element?: JSX.Element;
}

interface ColumnBodyRowEditorOptions {
editing: boolean;
editing?: boolean;
element?: JSX.Element;
onSaveClick?(e: any): void;
saveClassName?: string;
saveIconClassName?: string;
Expand Down

0 comments on commit 382727e

Please sign in to comment.