mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
c8635a7bc0
* feat: add Transfer's key type * docs: update prop * fix: key type * fix: cycle dependency
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
export type TransferKey = React.Key;
|
|
|
|
export type PaginationType =
|
|
| boolean
|
|
| {
|
|
pageSize?: number;
|
|
simple?: boolean;
|
|
showSizeChanger?: boolean;
|
|
showLessItems?: boolean;
|
|
};
|