react-native-ios-utilities
Version:
Utilities for react-native + iOS
13 lines • 354 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;
};
};
//# sourceMappingURL=MiscTypes.d.ts.map