zhizhi/node_modules/dingtalk-jsapi/api/device/nfc/nfcRead.d.ts

25 lines
725 B
TypeScript
Raw Normal View History

/**
* nfc读取接口
* @apiName device.nfc.nfcRead
*/
export interface IDeviceNfcNfcReadParams {
}
/**
* nfc读取接口
* @apiName device.nfc.nfcRead
*/
export interface IDeviceNfcNfcReadResult {
/** NFC芯片的内容 */
content: string;
}
/**
* nfc读取接口
* nfc功能的android手机
* NDEF的数据交换格式
* 使jsapijspai调用一次读取一次信息
* @apiName device.nfc.nfcRead
* @supportVersion ios: 2.11.0 android: 2.11.0
*/
export declare function nfcRead$(params: IDeviceNfcNfcReadParams): Promise<IDeviceNfcNfcReadResult>;
export default nfcRead$;