UNPKG

@dcp-designable/utils

Version:

工具类

16 lines (15 loc) 312 B
export interface AjaxResponse<T = any> { code: number; data: T; message: string; } export interface ISystemConfig { systemId: string; token: string; tenantId: string; userInfo: Record<string, any>; fetch: { baseURL: string; }; [key: string]: any; }