scan.d.ts 541 B

123456789101112131415161718192021
  1. /**
  2. * 扫码(支持二维码和条形码) 请求参数定义
  3. * @apiName biz.util.scan
  4. */
  5. export interface IBizUtilScanParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 扫码(支持二维码和条形码) 返回结果定义
  10. * @apiName biz.util.scan
  11. */
  12. export interface IBizUtilScanResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 扫码(支持二维码和条形码)
  17. * @apiName biz.util.scan
  18. * @supportVersion ios: 2.4.0 android: 2.4.0
  19. */
  20. export declare function scan$(params: IBizUtilScanParams): Promise<IBizUtilScanResult>;
  21. export default scan$;