import * as Koa from "koa"; import { IBaseInterface } from "./IBase.interface"; export interface ILennthApplication extends IBaseInterface { start(): Promise; use(middleware: Koa.Middleware): this; }