export * from './agent'; export * from './core'; export * from './notification'; export * from './order'; export * from './platform-user'; export * from './product-manage'; export * from './promotion'; export * from './system'; export interface ApiResponse { code: number; data: T; message: string; } export interface PageResult { items: T[]; total: number; } declare global { interface Window { $http: { delete(url: string, config?: any): Promise>; get(url: string, config?: any): Promise>; post( url: string, data?: any, config?: any, ): Promise>; put( url: string, data?: any, config?: any, ): Promise>; }; } }