UNPKG

@heycar-uikit/core

Version:
16 lines (15 loc) 598 B
type BreakpointObjectType = { s?: string | number; m?: string | number; l?: string | number; }; type BreakpointObjectKeysType = keyof BreakpointObjectType; type BreakpointType = string | number | BreakpointObjectType; type BreakpointsType = { mobile?: BreakpointType; tablet?: BreakpointType; desktop?: BreakpointType; }; type BreakpointsKeysType = keyof BreakpointsType; type ResponsivePropertyType = string | number | BreakpointsType; export { BreakpointObjectType, BreakpointObjectKeysType, BreakpointType, BreakpointsType, BreakpointsKeysType, ResponsivePropertyType };