UNPKG

@allthings/cloud-toolkit

Version:

Standardizes the setup of aws, Datadog and other things

11 lines (10 loc) 276 B
import { Logger } from 'winston'; interface ILoggerConfig { datadogApiKey?: string; defaultLogInformation?: object; deploymentStage: string; level?: string; service: string; } declare const logger: (config: ILoggerConfig) => Logger; export default logger;