mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
474 B
TypeScript
16 lines
474 B
TypeScript
// Type definitions for node-bunyan-logentries v0.1.0
|
|
// Project: https://github.com/nemtsov/node-bunyan-logentries
|
|
// Definitions by: Aymeric Beaumet <http://aymericbeaumet.me>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.1
|
|
|
|
/// <reference types="node" />
|
|
|
|
import bunyan = require("bunyan");
|
|
|
|
interface StreamOptions {
|
|
token: string;
|
|
}
|
|
|
|
export declare function createStream(options: StreamOptions): NodeJS.WritableStream;
|