Browse Source

fix: resizeColumn ts type error

pull/4861/head
tangjinzhou 3 years ago
parent
commit
641afe1b34
  1. 2
      components/table/Table.tsx

2
components/table/Table.tsx

@ -196,7 +196,7 @@ export const tableProps = () => {
default: undefined,
},
onResizeColumn: {
type: Function as PropType<(w: number, col: ColumnsType) => void>,
type: Function as PropType<(w: number, col: ColumnType) => void>,
default: undefined,
},
rowSelection: { type: Object as PropType<TableRowSelection>, default: undefined },

Loading…
Cancel
Save