UNPKG

react-native-ios-utilities

Version:
13 lines 354 B
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