mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-03-29 00:18:20 +08:00
9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
import Koa = require("koa");
|
|
import auth = require("koa-basic-auth");
|
|
|
|
const app = new Koa();
|
|
|
|
app.use(auth({name: "test", pass: "test"}));
|
|
|
|
app.listen(80);
|