UNPKG

react-native-ios-utilities

Version:

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

24 lines (23 loc) 400 B
export type NumericLogicalExpression = { mode: 'any'; } | { mode: 'isLessThan'; toValue: number; } | { mode: 'isLessThanOrEqual'; toValue: number; } | { mode: 'isEqual'; toValue: number; } | { mode: 'isGreaterThan'; toValue: number; } | { mode: 'isGreaterThanOrEqual'; toValue: number; } | { mode: 'isBetweenRange'; start: number; end: number; isInclusive?: boolean; };