UNPKG

hirsun-vuepress-theme-hope-plus

Version:
8 lines (7 loc) 268 B
import type { ComputedRef } from "vue"; export interface GlobalEncrypt { isEncrypted: ComputedRef<boolean>; isDecrypted: ComputedRef<boolean>; validate: (token: string, keep?: boolean) => void; } export declare const useGlobalEncrypt: () => GlobalEncrypt;