setRule.d.ts 518 B

123456789101112131415161718192021
  1. /**
  2. * 设置规则 请求参数定义
  3. * @apiName biz.contact.setRule
  4. */
  5. export interface IBizContactSetRuleParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 设置规则 返回结果定义
  10. * @apiName biz.contact.setRule
  11. */
  12. export interface IBizContactSetRuleResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 设置规则
  17. * @apiName biz.contact.setRule
  18. * @supportVersion ios: 2.15 android: 2.15
  19. */
  20. export declare function setRule$(params: IBizContactSetRuleParams): Promise<IBizContactSetRuleResult>;
  21. export default setRule$;