import { RequestHandler } from 'express' /* === Utilities === */ // https://github.com/Microsoft/TypeScript/issues/25760#issuecomment-614417742 export type Optional = Omit & Partial export type Port = number | string | boolean export interface ApiHandler { path: string handler: RequestHandler }