decrypt.d.ts 491 B

123456789101112131415161718192021
  1. /**
  2. * 解密 请求参数定义
  3. * @apiName biz.util.decrypt
  4. */
  5. export interface IBizUtilDecryptParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 解密 返回结果定义
  10. * @apiName biz.util.decrypt
  11. */
  12. export interface IBizUtilDecryptResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 解密
  17. * @apiName biz.util.decrypt
  18. * @supportVersion pc: 3.0.0 ios: 2.9.1 android: 2.9.1
  19. */
  20. export declare function decrypt$(params: IBizUtilDecryptParams): Promise<IBizUtilDecryptResult>;
  21. export default decrypt$;