import { PresetApiConfig } from './PresetApiConfig'; /** @description 定义的接口配置项 */ export type DefineApiConfig = Pick, 'axios' | 'cache' | 'dataNormalizer' | 'delay' | 'errorIgnore' | 'headers' | 'logger' | 'mockOff' | 'resolveType' | 'timeout' | 'label' | 'method' | 'mockBody' | 'mockData' | 'mockHeaders' | 'url' | 'mockForce'> & GExtendConfig & { meta?: GExtendMeta; };