UNPKG

@sergdudko/objectstream

Version:

Creates a stream to convert json from string or convert json to string.

24 lines (23 loc) 578 B
/** * Module for stream conversion Json to String and String to Json * @module sergdudko/objectstream * @author Siarhei Dudko <slavianich@gmail.com> * @copyright 2020 * @license MIT * @version 2.0.0 * @requires stream */ import { Parser } from "./classes/Parser.js"; import { Stringifer } from "./classes/Stringifer.js"; export { Parser, Stringifer }; declare const objectstream: { /** * Object to String stream */ Stringifer: typeof Stringifer; /** * String to Object stream */ Parser: typeof Parser; }; export default objectstream;