fix(react): add param types to useIonPopover dismiss function (#25311)

This commit is contained in:
Amanda Johnston
2022-05-18 13:15:35 -05:00
committed by GitHub
parent 08587bcd9f
commit 7111370dd7

View File

@ -37,5 +37,5 @@ export type UseIonPopoverResult = [
/**
* Dismisses the popover
*/
() => void
(data?: any, role?: string) => void
];