mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-03-25 07:44:32 +00:00
15 lines
440 B
TypeScript
15 lines
440 B
TypeScript
// Type definitions for koa-logger 3.1
|
|
// Project: https://github.com/koajs/logger
|
|
// Definitions by: Joshua DeVinney <https://github.com/geoffreak>
|
|
// Tomek Łaziuk <https://github.com/tlaziuk>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
import {
|
|
Middleware,
|
|
} from 'koa';
|
|
|
|
declare function KoaLogger(): Middleware;
|
|
declare namespace KoaLogger { }
|
|
export = KoaLogger;
|