/** * HttpClientService 灵活返回示例 * 展示如何根据不同需求获取不同的响应数据 */ import { HttpClientService } from '../services/http-client.service'; declare function getFullResponseExample(httpClient: HttpClientService): Promise; declare function getCustomResponseExample(httpClient: HttpClientService): Promise; declare function getPagedResponseExample(httpClient: HttpClientService): Promise<{ data: any; currentPage: number; pageSize: number; totalPages: number; totalItems: number; hasNextPage: any; hasPrevPage: any; }>; declare function getRedirectUrlExample(httpClient: HttpClientService): Promise<{ redirected: boolean; url: any; data?: undefined; } | { redirected: boolean; data: any; url?: undefined; }>; declare function getDefaultBehaviorExample(httpClient: HttpClientService): Promise; declare function conditionalReturnExample(httpClient: HttpClientService, needHeaders: boolean): Promise; export { getFullResponseExample, getCustomResponseExample, getPagedResponseExample, getRedirectUrlExample, getDefaultBehaviorExample, conditionalReturnExample, };