types: fix missing VisibilityState after typescript 4.6.0 (#10370)

This commit is contained in:
neverland 2022-03-09 18:43:08 +08:00 committed by GitHub
parent bc7afd7037
commit b0849c03e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,8 @@
import { ref, Ref } from 'vue';
import { inBrowser } from '../utils';
type VisibilityState = "hidden" | "visible";
let visibility: Ref<VisibilityState>;
export function usePageVisibility() {