mirror of https://gitlab.com/ecentrics/breeze
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
435 B
12 lines
435 B
// All valid OrbitDB types
|
|
export const ORBIT_TYPE_LOG = 'log';
|
|
export const ORBIT_TYPE_FEED = 'feed';
|
|
export const ORBIT_TYPE_KEYVALUE = 'keyvalue';
|
|
export const ORBIT_TYPE_DOCS = 'docs';
|
|
export const ORBIT_TYPE_COUNTER = 'counter';
|
|
|
|
// OrbitDB statuses
|
|
export const DB_STATUS_INIT = 'init';
|
|
export const DB_STATUS_READY = 'ready';
|
|
export const DB_STATUS_REPLICATING = 'replicating';
|
|
export const DB_STATUS_REPLICATED = 'replicated';
|
|
|