mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
373 B
TypeScript
16 lines
373 B
TypeScript
/// <reference path="JSONStream.d.ts" />
|
|
|
|
import json = require('JSONStream');
|
|
|
|
var read: NodeJS.ReadableStream;
|
|
var write: NodeJS.WritableStream;
|
|
|
|
read = read.pipe(json.parse('*'));
|
|
read = read.pipe(json.parse(['foo/*', 'bar/*']));
|
|
|
|
read = json.stringify();
|
|
read = json.stringify('{', ',', '}');
|
|
|
|
read = json.stringifyObject();
|
|
read = json.stringifyObject('{', ',', '}');
|