With the latest release 3.1.0 it seems the type APIResponse is not exported anymore, as a workaround i have had to copy paste from shared.d.ts the interface locally
export interface APIResponse<T> { code: string; requestTime: number; msg: 'success' | string; data: T; }
With the latest release 3.1.0 it seems the type APIResponse is not exported anymore, as a workaround i have had to copy paste from shared.d.ts the interface locally
export interface APIResponse<T> { code: string; requestTime: number; msg: 'success' | string; data: T; }