@alexkang/react-native-dev-tools
Version:
React & React native dev tools.
15 lines (14 loc) • 514 B
TypeScript
import React from 'react';
import { ViewStyle } from 'react-native';
interface Props {
title: string;
onClose?: Function;
isClose?: boolean;
contentContainerStyle?: ViewStyle;
children?: JSX.Element | React.Component;
nowMove?: boolean;
renderHeaderExtra?: Function;
renderFooter?: Function;
}
declare const ResizeableView: ({ title, contentContainerStyle, children, onClose, renderHeaderExtra, renderFooter, isClose, }: Props) => JSX.Element | null;
export default ResizeableView;