UNPKG

hirsun-vuepress-theme-hope-plus

Version:
12 lines (11 loc) 359 B
import type { ComputedRef } from "vue"; export interface EncryptStatus { isEncrypted: boolean; isDecrypted: boolean; } export interface PathEncrypt { status: ComputedRef<EncryptStatus>; getStatus: (path: string) => EncryptStatus; validate: (token: string, keep?: boolean) => void; } export declare const usePathEncrypt: () => PathEncrypt;