UNPKG

softchatjs-react-native

Version:

React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com

15 lines (12 loc) 361 B
import React from 'react'; import { Children } from '../../types.mjs'; import 'react-native'; import 'softchatjs-core'; type DraggebleProps = { disable?: boolean; onLongPress?: () => void; children: Children; actionContainer?: Children; }; declare function Draggeble(props: DraggebleProps): React.JSX.Element; export { Draggeble as default };