You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
690 B
13 lines
690 B
/// <reference types="react" />
|
|
import color from 'color';
|
|
import renderNode from './renderNode';
|
|
import getIconType from './getIconType';
|
|
import normalizeText from './normalizeText';
|
|
import { ThemeProps } from '../config';
|
|
declare const ScreenWidth: number;
|
|
declare const ScreenHeight: number;
|
|
declare const isIOS: boolean;
|
|
export declare type RneFunctionComponent<T> = React.FunctionComponent<T & Partial<ThemeProps<T>>>;
|
|
export declare const patchWebProps: <T extends Record<any, any>>({ updateTheme, replaceTheme, onClear, ...rest }: T) => Omit<T, "updateTheme" | "replaceTheme" | "onClear">;
|
|
export { renderNode, getIconType, normalizeText, ScreenWidth, ScreenHeight, isIOS, color, };
|