From 8decf27bad87b53c00cb54026faf05cf0002531d Mon Sep 17 00:00:00 2001 From: JasonS Date: Tue, 3 Mar 2015 17:43:45 -0800 Subject: [PATCH] add bunyan-prettystream definition. --- bunyan-prettystream/bunyan-prettystream.d.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bunyan-prettystream/bunyan-prettystream.d.ts diff --git a/bunyan-prettystream/bunyan-prettystream.d.ts b/bunyan-prettystream/bunyan-prettystream.d.ts new file mode 100644 index 000000000..cc8fb8219 --- /dev/null +++ b/bunyan-prettystream/bunyan-prettystream.d.ts @@ -0,0 +1,13 @@ +// type definitions for bunyan-prettystream +// project: https://www.npmjs.com/package/bunyan-prettystream +// definitions by jasons@novaleaf.com + +/// + +declare module "bunyan-prettystream" { + import stream = require("stream"); + class PrettyStream extends stream.Writable { + public pipe(destination: T, options?: { end?: boolean; }): T; + } + export = PrettyStream; +} \ No newline at end of file