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.
15 lines
646 B
15 lines
646 B
import React from 'react';
|
|
import { ImageProps as RNImageProps, StyleProp, ViewStyle } from 'react-native';
|
|
import { InlinePressableProps, RneFunctionComponent } from '../helpers';
|
|
export interface ImageProps extends RNImageProps, InlinePressableProps {
|
|
Component?: typeof React.Component;
|
|
ImageComponent?: typeof React.Component;
|
|
PlaceholderContent?: React.ReactElement;
|
|
containerStyle?: StyleProp<ViewStyle>;
|
|
childrenContainerStyle?: StyleProp<ViewStyle>;
|
|
placeholderStyle?: StyleProp<ViewStyle>;
|
|
transition?: boolean;
|
|
transitionDuration?: number;
|
|
}
|
|
export declare const Image: RneFunctionComponent<ImageProps>;
|