reactnativecomponents
Version:
React Native Components
14 lines (13 loc) • 337 B
TypeScript
/**
* @author 田尘殇Sean(sean.snow@live.com) create at 2017/11/4
*/
import { ReactNode } from 'react';
export declare type EmptyFunction = () => void;
export declare type ReactNodeFunction = () => ReactNode;
export interface Size {
width?: number;
height?: number;
}
export interface BaseProps {
children?: ReactNode;
}