import { IChassisContext, IChassisPlugin } from "../index"; /** * plugin has injects middleware 'after' every response is generated * * @param context * @param options * @returns {exports} */ export default class logging implements IChassisPlugin { name: string; title: string; install(_context: IChassisContext, _options: any): void; }