react-native-ios-utilities
Version:
Utilities for react-native + iOS
13 lines (10 loc) • 353 B
text/typescript
import type * as React from "react";
import type { ViewProps } from "react-native";
import type { WrapperView } from "./WrapperView";
import type { RefProp } from "../../types/SharedPropTypes";
export type WrapperViewBaseProps = {
ref: RefProp<WrapperView>;
};
export type WrapperViewProps =
& WrapperViewBaseProps
& Exclude<ViewProps, 'ref'>;