import * as Koa from 'koa'; export type KoaContext = Koa.ExtendableContext & { state: State; compress?: boolean; }; type KoaNext = () => Promise; export type KoaMiddleware = (context: KoaContext, next: KoaNext) => any; export {}; //# sourceMappingURL=types.d.ts.map