lazywithclass/winston-cloudwatch

rententionInDays missing in the type definition

Closed this issue · 1 comments

Based on this example

var winston = require('winston'),
    WinstonCloudWatch = require('../index');


// when you don't provide a name the default one
// is CloudWatch
winston.add(new WinstonCloudWatch({
  logGroupName: 'testing',
  logStreamName: 'another',
  awsRegion: 'us-east-1',
  retentionInDays: 14
}))

winston.error('1');

The types are missing retentionInDays

Addressed in #106, thanks anyway for your PR!