UNPKG

@ace-fetch/uni-app

Version:

uni-app adapter for @ace-fetch/core.

6 lines (5 loc) 293 B
import { RequestConfig, Response } from '@ace-fetch/core'; /** * Transform the data for a request or a response */ export declare function transformData(this: RequestConfig, fns?: ((data: any, status?: number) => any) | Array<(data: any, status?: number) => any>, response?: Response): any;