@konsumation/db-level
Version:
timeseries database on leveldb
29 lines (24 loc) • 535 B
JavaScript
/**
* Prefix of the master record
*/
export const MASTER = "master";
/**
* Prefix of the categories.
* Will be followed by the category name
*/
export const CATEGORY_PREFIX = "categories.";
/**
* Prefix of the values.
* Will be followed by the category name
*/
export const VALUE_PREFIX = "values.";
/**
* Prefix of the meters.
* Will be followed by the category name
*/
export const METER_PREFIX = "meters.";
/**
* Prefix of the notes.
* Will be followed by the category name
*/
export const NOTE_PREFIX = "notes.";