denwa-web-shared
Version:
A shared library for Next.js App Router projects containing reusable components, hooks, schemas, and utilities.
25 lines (24 loc) • 699 B
TypeScript
export declare const useLaptopBigViewPort: () => {
isLaptopBigMinWidth: boolean;
isLaptopBigMaxWidth: boolean;
};
export declare const useLaptopViewPort: () => {
isLaptopMinWidth: boolean;
isLaptopMaxWidth: boolean;
};
export declare const useTabletViewPort: () => {
isTabletMinWidth: boolean;
isTabletMaxWidth: boolean;
};
export declare const useExtraMediumViewPort: () => {
isExtraMediumMinWidth: boolean;
isExtraMediumMaxWidth: boolean;
};
export declare const useMobileViewPort: () => {
isMobileMinWidth: boolean;
isMobileMaxWidth: boolean;
};
export declare const useSmallViewPort: () => {
isSmallMinWidth: boolean;
isSmallMaxWidth: boolean;
};