globalEncrypt.d.ts 369 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
import type { EncryptOptions } from "../types";
export declare const globalEncryptMixin: import("vue/types/vue").ExtendedVue<{
    encryptOptions: EncryptOptions;
} & Record<never, any> & import("vue").default, {
    globalEncryptPassword: string;
}, {
    checkGlobalPassword(globalPassword: string): void;
}, {
    isGlobalEncrypted: boolean;
}, Record<never, any>>;