Skip to content

Commit

Permalink
Fixed #898 - sortFunction Typescript definition fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed May 21, 2019
1 parent 1baaa78 commit df3e0a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/column/Column.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ interface ColumnProps {
rowReorderIcon?: string;
editorValidatorEvent?: string;
excludeGlobalFilter?: boolean;
sortFunction?(): void;
sortFunction?(e: {field: string, order: number}): void;
filterFunction?(value: any, filter: any): void;
editor?(props: any): JSX.Element | undefined;
editorValidator?(props: any): boolean;
Expand Down

0 comments on commit df3e0a0

Please sign in to comment.