@types/stream-json
Version:
TypeScript definitions for stream-json
27 lines (19 loc) • 696 B
TypeScript
import Chain = require("stream-chain");
import StreamBase = require("./StreamBase");
export = StreamArray;
declare class StreamArray extends StreamBase {
constructor(options?: StreamBase.StreamOptions);
}
declare namespace StreamArray {
function make(options?: StreamBase.StreamOptions): StreamArray;
namespace make {
type Constructor = StreamArray;
const Constructor: typeof StreamArray;
}
function streamArray(options?: StreamBase.StreamOptions): StreamArray;
namespace streamArray {
type Constructor = StreamArray;
const Constructor: typeof StreamArray;
}
function withParser(options?: StreamBase.StreamOptions): Chain;
}