Skip to content

Commit 641afe1

Browse files
committed
fix: resizeColumn ts type error
1 parent 6dfc837 commit 641afe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/table/Table.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export const tableProps = () => {
196196
default: undefined,
197197
},
198198
onResizeColumn: {
199-
type: Function as PropType<(w: number, col: ColumnsType) => void>,
199+
type: Function as PropType<(w: number, col: ColumnType) => void>,
200200
default: undefined,
201201
},
202202
rowSelection: { type: Object as PropType<TableRowSelection>, default: undefined },

0 commit comments

Comments
 (0)