UNPKG

react-native-ui-lib

Version:

[![Build Status](https://travis-ci.org/wix/react-native-ui-lib.svg?branch=master)](https://travis-ci.org/wix/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down

23 lines (22 loc) 666 B
/// <reference types="react" /> import { BaseComponent } from "../../commons"; declare type ImageProps = { sourceTransformer?: (...args: any[]) => any; assetName?: string; assetGroup?: string; }; /** * @description: Image wrapper with extra functionality like source transform and assets support * @extends: Image * @extendslink: https://facebook.github.io/react-native/docs/image.html */ declare class Image extends BaseComponent<ImageProps, {}> { static displayName: string; static defaultProps: { assetGroup: string; }; constructor(props: any); getImageSource(): any; render(): JSX.Element; } export default Image;