UNPKG

@tslsmart/magic-applet

Version:

特斯联移动端统一接口,抹平h5和wgt的差异

16 lines (13 loc) 280 B
import type { ScanParams } from '../types' import { action } from './action' export const toScan = (config: ScanParams) => { const { targetUrl, fail } = config action({ actionType: 'scan', targetUrl }).catch((err) => { if (fail) { fail(err) } }) }