@konsumation/db-level
Version:
timeseries database on leveldb
25 lines (24 loc) • 526 B
text/typescript
/**
* 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.";