mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 22:36:31 +08:00
Fix incorrect tree type (#16624)
This commit is contained in:
parent
c39ca23b7d
commit
9308f19314
@ -69,7 +69,7 @@ export interface AntTreeNodeExpandedEvent extends AntTreeNodeBaseEvent {
|
||||
|
||||
export interface AntTreeNodeMouseEvent {
|
||||
node: AntTreeNode;
|
||||
event: React.MouseEventHandler<any>;
|
||||
event: React.MouseEvent<any>;
|
||||
}
|
||||
|
||||
export interface AntTreeNodeDropEvent {
|
||||
@ -78,7 +78,7 @@ export interface AntTreeNodeDropEvent {
|
||||
dragNodesKeys: string[];
|
||||
dropPosition: number;
|
||||
dropToGap?: boolean;
|
||||
event: React.MouseEventHandler<any>;
|
||||
event: React.MouseEvent<any>;
|
||||
}
|
||||
|
||||
export interface TreeProps {
|
||||
|
Loading…
Reference in New Issue
Block a user