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