react-native-ios-context-menu/src/types/MiscTypes.ts
Dominic Go e02d96e187 ☯️ Add ImageItemConfig
Summary: Copy over `RNIWrapperView` native component impl. from `react-native-ios-navigator`.
2021-11-21 06:03:35 +08:00

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;
};
};