softchatjs-react-native
Version:
React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com
15 lines (12 loc) • 360 B
TypeScript
import React from 'react';
import { Children } from '../../types.js';
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 };