mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-11 11:34:12 +08:00
13 lines
374 B
TypeScript
13 lines
374 B
TypeScript
// Type definitions for koa-logger v2.0
|
|
// Project: https://github.com/koajs/logger
|
|
// Definitions by: Joshua DeVinney <https://github.com/geoffreak>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="koa"/>
|
|
|
|
import * as Koa from 'koa';
|
|
|
|
declare function KoaLogger(): Koa.Middleware;
|
|
declare namespace KoaLogger {}
|
|
export = KoaLogger;
|