UNPKG

vuepress-theme-hope

Version:

A light vuepress theme with tons of features

7 lines (6 loc) 176 B
import type { Ref } from "vue"; export interface WindowSizeRef { isMobile: Ref<boolean>; isPC: Ref<boolean>; } export declare const useWindowSize: () => WindowSizeRef;