UNPKG

@kadconsulting/dry

Version:
20 lines (19 loc) 431 B
export declare enum ViewportSizes { Desktop = "desktop", Tablet = "tablet", Mobile = "mobile" } export declare enum Layouts { Desktop = "desktop", Tablet = "tablet", Mobile = "mobile" } /** { breakpointName: CSS px value string } */ export type Breakpoints = { [key: string]: string; desktopMin: string; tabletMax: string; tabletMin: string; mobileMax: string; mobileMin: string; };