UNPKG

@onehat/data

Version:

JS data modeling package with adapters for many storage mediums.

11 lines (8 loc) 227 B
/** @module Writer */ import JsonWriter from './JsonWriter.js'; // import XmlWriter from './XmlWriter.js'; const WriterTypes = { [JsonWriter.type]: JsonWriter, // [XmlWriter.type]: XmlWriter, }; export default WriterTypes;