UNPKG

@tnwx/commons

Version:

TTNWX 微信系开发脚手架之公共模块

15 lines (14 loc) 388 B
/** * @author Javen * @copyright javendev@126.com * @description 菜单二维码扫描的结果 */ export declare class ScanCodeInfo { private ScanType; private ScanResult; constructor(scanType: string, scanResult: string); get getScanType(): string; set setScanType(scanType: string); get getScanResult(): string; set setScanResult(scanResult: string); }