UNPKG

@funnelback/ng-sds

Version:

`@funnelback/ng-sds` is Bootstrap 5 based library that aims to implement the [Squiz Design System specification](https://designsystem.squiz.net/) in Angular.

30 lines (29 loc) 555 B
export interface WindowSize { width: number; height: number; } export declare enum BreakpointType { xs = "xs", sm = "sm", md = "md", lg = "lg", xl = "xl" } export declare const BREAKPOINTS: { [T in BreakpointType]: { min: number; max: number; }; }; export declare enum ViewType { mobile = "mobile", tablet = "tablet", desktop = "desktop", largeDesktop = "largeDesktop" } export declare const VIEW_BREAKPOINTS: { [T in ViewType]: { min: number; max: number; }; };