mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
413 B
TypeScript
11 lines
413 B
TypeScript
// Type definitions for bunyan-winston-adapter 0.2
|
|
// Project: https://github.com/gluwer/bunyan-winston-adapter
|
|
// Definitions by: Steve Hipwell <https://github.com/stevehipwell>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
import * as bunyan from "bunyan";
|
|
import { Logger } from "winston";
|
|
|
|
export function createAdapter(logger: Logger, mapping?: any): bunyan;
|