10 linhas
227 B
JavaScript
10 linhas
227 B
JavaScript
var autonomy = exports;
|
|
|
|
exports.StateEstimator = require('./lib/StateEstimator');
|
|
|
|
exports.estimateState = function(client, options) {
|
|
var estimator = new autonomy.StateEstimator(client, options);
|
|
return estimator;
|
|
}
|
|
|