react-native-actions-sheet
Version:
A Cross Platform(Android & iOS) ActionSheet with a robust and flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.
12 lines • 434 B
TypeScript
/// <reference types="react" />
declare const useSheetManager: ({ id, onHide, onBeforeShow, onContextUpdate, }: {
id?: string;
onHide: (data?: any) => void;
onBeforeShow?: (data?: any) => void;
onContextUpdate: () => void;
}) => {
visible: boolean;
setVisible: import("react").Dispatch<import("react").SetStateAction<boolean>>;
};
export default useSheetManager;
//# sourceMappingURL=use-sheet-manager.d.ts.map