import type { YunzaiConfig, HttpClient } from '../../../utils'; import type { YunzaiAuth } from '../../../auth'; import type { YunzaiCache } from '../../../cache'; import type { YunzaiI18n } from '../../../theme'; import type { Router } from 'vue-router'; export interface Velon { conf?: YunzaiConfig; auth?: YunzaiAuth; http?: HttpClient; cache?: YunzaiCache; i18n?: YunzaiI18n; router?: Router; }