rn-custom-style-sheet
Version:
React Native component to select a specific value from a range of values.
13 lines • 501 B
TypeScript
import type { breakpointValue } from './Breakpoint';
export type KeyType = string | number | undefined;
export type BreakPointSortType = {
key: string;
val: number;
};
export type BreakPointType = Partial<typeof breakpointValue> & Record<string, number>;
type BreakpointPartial<T> = {
[P in keyof T]?: string | number;
};
export type BreakPointValueType = BreakpointPartial<typeof breakpointValue> & Record<string, string | number>;
export {};
//# sourceMappingURL=BreakPointTypes.d.ts.map