echoes/frontend/types/context.ts

12 lines
493 B
TypeScript
Raw Normal View History

// File path: /d:/data/echoes/frontend/types/context.ts
/**
*
*
* API基础URL
*/
export interface AppContext {
apiBaseUrl: string; // 用于访问API的基础URL
themesPath: string; // 存储主题文件的目录路径
pluginsPath: string; // 存储插件文件的目录路径
assetsPath: string; // 存储静态资源的目录路径
}