UNPKG

react-native-ios-utilities

Version:

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

17 lines (12 loc) 365 B
import type { ColorValue } from "../MiscTypes"; import type { CACornerMask, CGSize } from "../NativeTypes"; export type BaseLayerKeyframeConfig = { borderWidth?: number; borderColor?: ColorValue; shadowColor?: ColorValue; shadowOffset?: CGSize; shadowOpacity?: number; shadowRadius?: number; cornerRadius?: number; cornerMask?: CACornerMask; };