react-native-ios-utilities
Version:
Utilities for react-native + iOS
8 lines • 670 B
TypeScript
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