UNPKG

react-native-ios-utilities

Version:

Utilities for react-native + iOS and wrappers for using swift together with fabric/paper + JSI

12 lines 423 B
import type { DynamicColor } from "../MiscTypes"; /** Maps to `UIImage.RenderingMode`*/ export type ImageRenderingModes = 'automatic' | 'alwaysOriginal' | 'alwaysTemplate'; /** `UIImage`-related */ export type UIImageConfig = { tint?: string | DynamicColor; renderingMode?: ImageRenderingModes; }; export type ImageOptions = UIImageConfig & { cornerRadius?: number; }; //# sourceMappingURL=ImageOptions.d.ts.map