blob: 93e6604c1c21199e1befc9adc26575056f6cb6f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
'use strict';
var { NativeModules } = require('react-native');
var RCTModule = NativeModules.NT13BProfileModule
/**
* @module NT13BProfileModule
*/
module.exports = {
ACTION_MEASUREMENT_RESULT: RCTModule.ACTION_MEASUREMENT_RESULT,
UNIT_FLAG: RCTModule.UNIT_FLAG,
RESULT: RCTModule.RESULT,
TS_FLAG: RCTModule.TS_FLAG,
TS: RCTModule.TS,
THERMOMETER_TYPE_FLAG: RCTModule.THERMOMETER_TYPE_FLAG,
THERMOMETER_TYPE: RCTModule.THERMOMETER_TYPE,
ACTION_GET_ALL_CONNECTED_DEVICES: RCTModule.ACTION_GET_ALL_CONNECTED_DEVICES
}
|