import express from 'express' export type ContextConfigType = { scanDirs?: Array } export type ConstructorType = { new (): any [prop: string]: any } export type PojoType = { [prop: string]: any } export type HttpFunctionType = { (req: express.Request, res: express.Response): any } export type MysqlConnectOptionType = { host: string, user: string, password: string, database: string, connectionLimit?: number, queueLimit?: number }