react-native-ios-utilities
Version:
Utilities for react-native + iOS
23 lines (20 loc) • 326 B
text/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;
};
};