UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

8 lines (7 loc) 319 B
/// <reference types="react" /> import { ActionSheetActionObject } from "./action-sheet.shared"; interface ActionSheetContextProps { onSelect?: (object: ActionSheetActionObject) => void; } declare const ActionSheetContext: import("react").Context<ActionSheetContextProps>; export default ActionSheetContext;