// Type definitions for node-bunyan-logentries v0.1.0 // Project: https://github.com/nemtsov/node-bunyan-logentries // Definitions by: Aymeric Beaumet // Definitions: https://github.com/borisyankov/DefinitelyTyped /// /// declare module "bunyan-logentries" { import bunyan = require("bunyan"); interface StreamOptions { token: string; } export function createStream(options: StreamOptions): NodeJS.WritableStream; }