UNPKG

koa-toobusy

Version:
20 lines (15 loc) 422 B
import { Middleware} from 'koa'; declare namespace KoaTooBusy { interface KoaTooBusyOptionsObject { maxLag?: number interval?: number status?: number message?: string } type KoaTooBusyOptions = KoaTooBusyOptionsObject interface KoaTooBusy { (options?: KoaTooBusyOptions): Middleware; } } declare const KoaTooBusy: KoaTooBusy.KoaTooBusy; export = KoaTooBusy;