@sergdudko/objectstream
Version:
Creates a stream to convert json from string or convert json to string.
23 lines (22 loc) • 527 B
TypeScript
/**
* 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";
import { Stringifer } from "./classes/Stringifer";
declare const _default: {
/**
* Object to String stream
*/
Stringifer: typeof Stringifer;
/**
* String to Object stream
*/
Parser: typeof Parser;
};
export = _default;