export interface Meta { status: number; errorCode?: number; message?: string; } export interface BaseResponse { meta: Meta; data: T; }