UNPKG

crdts

Version:

A library of Conflict-Free Replicated Data Types for JavaScript.

9 lines (8 loc) 381 B
// Export all supported CRDTs export { default as GCounter } from './G-Counter.js' export { default as CmRDTSet } from './CmRDT-Set.js' export { default as GSet } from './G-Set.js' export { default as TwoPSet } from './2P-Set.js' export { default as ORSet } from './OR-Set.js' export { default as LWWSet } from './LWW-Set.js' export { default as PNCounter } from './PN-Counter.js'