react-native-ios-utilities
Version:
Utilities for react-native + iOS and wrappers for using swift together with fabric/paper + JSI
11 lines (9 loc) • 421 B
text/typescript
import type { ComputableLayoutOffsetOperation } from "./ComputableLayoutOffsetOperation";
import type { ComputableLayoutValueMode } from "./ComputableLayoutValueMode";
export type ComputableLayoutValue = {
mode: ComputableLayoutValueMode;
offsetValue?: ComputableLayoutValueMode;
offsetOperation?: ComputableLayoutOffsetOperation;
minValue?: ComputableLayoutValueMode;
maxValue?: ComputableLayoutValueMode;
};