Summary: Copy over `RNIWrapperView` native component impl. from `react-native-ios-navigator`.
23 lines
326 B
TypeScript
23 lines
326 B
TypeScript
|
|
export type PointPreset =
|
|
| 'top'
|
|
| 'bottom'
|
|
| 'left'
|
|
| 'right'
|
|
| 'bottomLeft'
|
|
| 'bottomRight'
|
|
| 'topLeft'
|
|
| 'topRight';
|
|
|
|
export type Point = {
|
|
x: number;
|
|
y: number;
|
|
};
|
|
|
|
/** Object return by `DynamicColorIOS` */
|
|
export type DynamicColor = {
|
|
dynamic: {
|
|
dark: string;
|
|
light: string;
|
|
};
|
|
}; |