react-native-ios-utilities
Version:
Utilities for react-native + iOS
13 lines • 722 B
TypeScript
import type { ViewProps } from 'react-native';
import type { RNIDetachedNativeViewProps } from './RNIDetachedNativeViewTypes';
export type RNIDetachedViewInheritedProps = Pick<RNIDetachedNativeViewProps, 'contentTargetMode'> & Partial<Pick<RNIDetachedNativeViewProps, 'internalViewCleanupMode' | 'onViewDidDetach'>>;
export type RNIDetachedViewBaseProps = {
shouldApplyStyleOverride?: boolean;
shouldCleanupOnComponentWillUnmount?: boolean;
shouldNotifyOnComponentWillUnmount?: boolean;
};
export type RNIDetachedViewProps = RNIDetachedViewInheritedProps & RNIDetachedViewBaseProps & ViewProps;
export type RNIDetachedViewState = {
isDetached: boolean;
};
//# sourceMappingURL=RNIDetachedViewTypes.d.ts.map