Skip to content

Commit

Permalink
fix: 修正 AMapMapTypeProps 回调函数类型
Browse files Browse the repository at this point in the history
  • Loading branch information
xyy94813 committed Jul 6, 2023
1 parent 6a0d491 commit 03a381a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/AMapMapType/interface.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export type AMapMapTypeProps = AMap.MapTypeOptions & {
visible: boolean,
onHide: () => void,
onShow: () => void,
visible: boolean;
onHide: (event?: any) => void;
onShow: (event?: any) => void;
};

0 comments on commit 03a381a

Please sign in to comment.