UNPKG

react-native-ios-utilities

Version:
8 lines 670 B
import type { ViewProps } from 'react-native'; import type { RNIImageNativeViewProps } from './RNIImageNativeViewTypes'; export type RNIImageViewInheritedNativeRequiredProps = Pick<RNIImageNativeViewProps, 'imageConfig'>; export type RNIImageViewInheritedNativeOptionalProps = Partial<Pick<RNIImageNativeViewProps, 'preferredSymbolConfiguration'>>; export type RNIImageViewInheritedNativeProps = RNIImageViewInheritedNativeRequiredProps & RNIImageViewInheritedNativeOptionalProps; export type RNIImageViewBaseProps = {}; export type RNIImageViewProps = RNIImageViewInheritedNativeProps & RNIImageViewBaseProps & ViewProps; //# sourceMappingURL=RNIImageViewTypes.d.ts.map