mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Update index.d.ts add MUIDataTableColumnOptions optional field filterType added line 105 `filterType?: 'dropdown' | 'checkbox' | 'multiselect' | 'textField';` to match line 95 of https://github.com/gregnb/mui-datatables/blob/master/src/MUIDataTable.js * add React.ReactNode as valid type for MUIDataTableProps title before: ``` export interface MUIDataTableProps { title: string; columns: MUIDataTableColumnDef[]; data: Array<object | number[] | string[]>; options?: MUIDataTableOptions; } ``` after: ``` export interface MUIDataTableProps { title: string | React.ReactNode; columns: MUIDataTableColumnDef[]; data: Array<object | number[] | string[]>; options?: MUIDataTableOptions; } ``` |
||
|---|---|---|
| .. | ||
| index.d.ts | ||
| mui-datatables-tests.tsx | ||
| tsconfig.json | ||
| tslint.json | ||