import { BaseResponse } from './base-response.interface'; export interface ListResponse extends BaseResponse { /** * The list response, that comes for the index requests by the backend response transformer. */ data: T[]; }