/** * @description 接口返回异常提示语 * @params {String或Object} type 指操作的类型: * @value {String} 值有 删除:'delete' 修改:'update' 新增:'create' * @value {Object} { success: 'xxx成功提示语'} * * @params {Object} res 接口返回数据 * @params {Function} callback 事件回调 * */ declare const responseControl: (type?: any, res?: any, callback?: ((res: any) => void) | undefined) => void; /** * @description 接口返回正常回调判断 * @params {Object} res 接口返回数据 * @params {Function} callback 事件回调 * */ declare const responseQuery: (res?: any, callback?: ((res: any) => void) | undefined) => void; export { responseControl, responseQuery };