How to import @koa/router in Typescript

example.ts
import Router from '@koa/router';
import Koa from 'koa';

const app = new Koa();
const router = new Router();

 


Check out similar posts by category: NodeJS, Typescript