UNPKG

sensecap

Version:

## Install ``` npm install sensecap --save ```

14 lines (10 loc) 251 B
var DeviceResult = require('../result/DeviceResult'); function DeviceQuery(build) { this.context = build; } DeviceQuery.prototype = { exec: function () { return new DeviceResult(this.context); } }; module.exports = DeviceQuery;