hirsun-vuepress-theme-hope-plus
Version:
A light vuepress theme with tons of features and typewriter effect
12 lines (11 loc) • 359 B
TypeScript
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;