zhizhi/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/enable.d.ts

23 lines
622 B
TypeScript
Raw Normal View History

/**
*
* @apiName ui.pullToRefresh.enable
*/
export interface IUiPullToRefreshEnableParams {
/** onSuccess为监听函数 */
onSuccess?: () => void;
}
/**
*
* @apiName ui.pullToRefresh.enable
*/
export interface IUiPullToRefreshEnableResult {
[key: string]: any;
}
/**
*
* @apiName ui.pullToRefresh.enable
* @supportVersion ios: 2.4.0 android: 2.4.0
*/
export declare function enable$(params: IUiPullToRefreshEnableParams): Promise<IUiPullToRefreshEnableResult>;
export default enable$;