UNPKG

reactnativecomponents

Version:
14 lines (13 loc) 337 B
/** * @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; }