koa-flow-declarations
v0.1.0
Published
koa flow declarations
Downloads
351
Readme
koa-flow-declarations
How to install
First, install and configure babel.
npm install --save-dev koa-flow-declarationsHow to use
import Koa from 'koa';
import type { KoaContext } from 'koa-flow-declarations/KoaContext';
const app = new Koa();
app.use(async (ctx: KoaContext) => {
});