TinyBase logoTinyBase

getStore

The getStore method returns a reference to the underlying Store that is backing this Metrics object.

getStore(): Store
returnsStore

A reference to the Store.

Example

This example creates a Metrics object against a newly-created Store and then gets its reference in order to update its data.

const metrics = createMetrics(createStore());
metrics.setMetricDefinition('speciesCount', 'species');
metrics.getStore().setCell('species', 'dog', 'price', 5);
console.log(metrics.getMetric('speciesCount'));
// -> 1