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