winston-cloudwatch
Advanced tools
Comparing version 2.3.0 to 2.3.1
@@ -0,1 +1,5 @@ | ||
### 2.3.1 | ||
Fix TS type definition | ||
### 2.3.0 | ||
@@ -2,0 +6,0 @@ |
{ | ||
"name": "winston-cloudwatch", | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"description": "Send logs to Amazon Cloudwatch using Winston.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -1,2 +0,2 @@ | ||
# winston-cloudwatch [v2.3.0](https://github.com/lazywithclass/winston-cloudwatch/blob/master/CHANGELOG.md#230) | ||
# winston-cloudwatch [v2.3.1](https://github.com/lazywithclass/winston-cloudwatch/blob/master/CHANGELOG.md#231) | ||
@@ -3,0 +3,0 @@ [![Build Status](https://travis-ci.org/lazywithclass/winston-cloudwatch.svg?branch=master)](https://travis-ci.org/lazywithclass/winston-cloudwatch) [![Coverage Status](https://coveralls.io/repos/github/lazywithclass/winston-cloudwatch/badge.svg?branch=master)](https://coveralls.io/github/lazywithclass/winston-cloudwatch?branch=master) [![Dependency Status](https://david-dm.org/lazywithclass/winston-cloudwatch.svg)](https://david-dm.org/lazywithclass/winston-cloudwatch) [![dev dependencies](https://david-dm.org/lazywithclass/winston-cloudwatch/dev-status.svg)](https://david-dm.org/lazywithclass/winston-cloudwatch#info=devDependencies) [![peer dependencies](https://david-dm.org/lazywithclass/winston-cloudwatch/peer-status.svg)](https://david-dm.org/lazywithclass/winston-cloudwatch#info=peerDependencies) |
@@ -5,2 +5,4 @@ import TransportStream = require("winston-transport"); | ||
import winston = require('winston'); | ||
// Declare the default WinstonCloudwatch class | ||
@@ -48,3 +50,3 @@ declare class WinstonCloudwatch extends TransportStream { | ||
export type LogObject = { level: string; msg: string; meta?: any }; | ||
export type LogObject = winston.LogEntry; | ||
@@ -51,0 +53,0 @@ export interface CloudwatchTransportOptions { |
58475
1227