stop.d.ts 564 B

123456789101112131415161718192021
  1. /**
  2. * 收起下拉刷新控件 请求参数定义
  3. * @apiName ui.pullToRefresh.stop
  4. */
  5. export interface IUiPullToRefreshStopParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 收起下拉刷新控件 返回结果定义
  10. * @apiName ui.pullToRefresh.stop
  11. */
  12. export interface IUiPullToRefreshStopResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 收起下拉刷新控件
  17. * @apiName ui.pullToRefresh.stop
  18. * @supportVersion ios: 2.4.0 android: 2.4.0
  19. */
  20. export declare function stop$(params: IUiPullToRefreshStopParams): Promise<IUiPullToRefreshStopResult>;
  21. export default stop$;