UNPKG

@types/stream-json

Version:
27 lines (19 loc) 696 B
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; }