softchatjs-react-native
Version:
React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com
13 lines (10 loc) • 341 B
TypeScript
import React from 'react';
import { Children } from '../../types.js';
import { ViewStyle } from 'react-native';
import 'softchatjs-core';
type DraggebleItemProps = {
children: Children;
animatedStyles: ViewStyle;
};
declare function DraggebleItem(props: DraggebleItemProps): React.JSX.Element;
export { DraggebleItem as default };