UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

11 lines (10 loc) 322 B
/** * The default Webflow Breakpoint names. */ export type WebflowBreakpoint = 'main' | 'medium' | 'small' | 'tiny'; type WebflowBreakpoints = Map<WebflowBreakpoint, string>; /** * Defines the default media queries for Webflow's breakpoints. */ export declare const WEBFLOW_BREAKPOINTS: WebflowBreakpoints; export {};