mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-28 17:35:49 +08:00
14 lines
537 B
TypeScript
14 lines
537 B
TypeScript
// Type definitions for bunyan-prettystream
|
|
// Project: https://www.npmjs.com/package/bunyan-prettystream
|
|
// Definitions by: Jason Swearingen <https://github.com/jasonswearingen/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare module "bunyan-prettystream" {
|
|
import stream = require("stream");
|
|
class PrettyStream extends stream.Writable {
|
|
public pipe<T extends NodeJS.WritableStream>(destination: T, options?: { end?: boolean; }): T;
|
|
}
|
|
export = PrettyStream;
|
|
} |