@design.estate/dees-domtools
Version:
A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.
10 lines (9 loc) • 484 B
TypeScript
export declare const desktop = 1240;
export declare const tablet = 700;
export declare const phablet = 500;
export declare const phone = 340;
export declare type TEnvironment = 'native' | 'desktop' | 'tablet' | 'phablet' | 'phone';
export declare const setEnvironment: (envArg: any) => void;
export declare const cssForTablet: (contentArg: any) => string;
export declare const cssForPhablet: (contentArg: any) => string;
export declare const cssForPhone: (contentArg: any) => string;