UNPKG

@types/jsonstream-next

Version:
52 lines (39 loc) 1.82 kB
# Installation > `npm install --save @types/jsonstream-next` # Summary This package contains type definitions for jsonstream-next (https://github.com/dominictarr/JSONStream). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonstream-next. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonstream-next/index.d.ts) ````ts /// <reference types="node" /> import stream = require("stream"); export interface Options { recurse: boolean; } export function parse(pattern: any): stream.Transform; export function parse(patterns: any[]): stream.Transform; /** * Create a writable stream. * You may pass in custom open, close, and seperator strings, but, by default, * JSONStream.stringify() will create an array, * (with default options open='[\n', sep='\n,\n', close='\n]\n') */ export function stringify(): stream.Transform; /** * Create a writable stream. * You may pass in custom open, close, and seperator strings. */ export function stringify(open: string, sep: string, close: string): stream.Transform; /** Creates a writable stream where elements are only seperated by a newline. */ export function stringify(newlineOnly: NewlineOnlyIndicator): stream.Transform; export type NewlineOnlyIndicator = false; export function stringifyObject(): stream.Transform; export function stringifyObject(open: string, sep: string, close: string): stream.Transform; export function stringifyObject(newlineOnly: NewlineOnlyIndicator): stream.Transform; ```` ### Additional Details * Last updated: Tue, 07 Nov 2023 03:09:37 GMT * Dependencies: [@types/node](https://npmjs.com/package/@types/node) # Credits These definitions were written by [Daniel Rosenwasser](https://github.com/DanielRosenwasser).