rn-custom-style-sheet
Version:
React Native component to select a specific value from a range of values.
11 lines (9 loc) • 373 B
text/typescript
import type { StateGuideLineBreakpointType } from '../../../Core';
import type { MediaQueryAllQueryable } from '../../../MediaQuery';
import type { ScaleFuncType } from '../Scale';
export type DeepMapArgType = {
styles: Record<string, any>;
guideLineBreakpoint: StateGuideLineBreakpointType;
device?: Partial<MediaQueryAllQueryable>;
scaleFunc?: ScaleFuncType;
};