startDocSign.d.ts 656 B

123456789101112131415161718192021
  1. /**
  2. * 开始签批(pdf全文批注或表单签批 ) 请求参数定义
  3. * @apiName biz.util.startDocSign
  4. */
  5. export interface IBizUtilStartDocSignParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 开始签批(pdf全文批注或表单签批 ) 返回结果定义
  10. * @apiName biz.util.startDocSign
  11. */
  12. export interface IBizUtilStartDocSignResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 开始签批(pdf全文批注或表单签批 )
  17. * @apiName biz.util.startDocSign
  18. * @supportVersion ios: 4.6.33 android: 4.6.33
  19. */
  20. export declare function startDocSign$(params: IBizUtilStartDocSignParams): Promise<IBizUtilStartDocSignResult>;
  21. export default startDocSign$;