/** * This is a Pinia store definition named "ScreenStore". * It has a state with properties screenWidth and screenHeight, * and actions to update these properties with the current window dimensions. * It also has getters to check if the screen is very small, small, or in portrait orientation. * * @type {StoreDefinition<"ScreenStore", {screenWidth: number, screenHeight: number}, {isVerySmallScreen: (function(*): boolean), isSmallScreen: (function(*): boolean), isPortrait: (function(*): boolean)}, {updateScreenSize(): void}>} */ export const useScreenStore: StoreDefinition<"ScreenStore", { screenWidth: number; screenHeight: number; }, { isVerySmallScreen: ((arg0: any) => boolean); isSmallScreen: ((arg0: any) => boolean); isPortrait: ((arg0: any) => boolean); }, { updateScreenSize(): void; }>; //# sourceMappingURL=screen.d.ts.map