UNPKG

xframelib

Version:

The accumulated front-end development foundation library originates from projects and serves projects.

31 lines (30 loc) 556 B
declare class ScreenClass { sizes: { sm: number; md: number; lg: number; xl: number; }; lt: { sm: boolean; md: boolean; lg: boolean; xl: boolean; }; gt: { xs: boolean; sm: boolean; md: boolean; lg: boolean; }; xs: boolean; sm: boolean; md: boolean; lg: boolean; xl: boolean; getSize(): number[]; updateSize(): void; } declare const Screen: ScreenClass; export { ScreenClass, Screen }; export default Screen;