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