export interface IBaseResponse { status: number; success: boolean; } export interface IResponse extends IBaseResponse { data: T; }