vuepress-theme-hope
Version:
A light vuepress theme with tons of features
9 lines (8 loc) • 350 B
TypeScript
import type { ComputedRef } from "vue";
import type { EncryptStatus } from "@theme-hope/composables/encrypt/typings";
export interface PathEncrypt {
status: ComputedRef<EncryptStatus>;
getStatus: (path: string) => EncryptStatus;
validate: (token: string, keep?: boolean) => void;
}
export declare const usePathEncrypt: () => PathEncrypt;