/// declare module '*.vue' { import { DefineComponent } from 'vue' const component: DefineComponent<{}, {}, any> export default component } declare module '@/utils/crypto' { export const encodeBase64: (str: string) => string } declare module 'spark-md5' { export default class SparkMD5 { static hash(str: string, raw?: boolean): string static hashBinary(content: string, raw?: boolean): string static ArrayBuffer: { new (): { append(arr: ArrayBuffer | Uint8Array): void end(raw?: boolean): string reset(): void } } } }