import type { AppModel } from '../models/app'; /** * 外部可通过接口合并扩展项目相关全局数据. * * @example * ```typescript * import type { HomeGlobalData } from './home'; * * import '@whale.io/mini/es/miniu'; * declare module '@whale.io/mini/es/miniu' { * export interface GlobalData { * home: HomeGlobalData; * } * } * ``` */ interface GlobalData { app: AppModel; } export default GlobalData;