@crossed/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.
17 lines • 566 B
TypeScript
/**
* Copyright (c) Paymium.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root of this projects source tree.
*/
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