"use strict"; class TTNAppServer { // Destructure the awilix container constructor({ settings, ansi }) { this.settings = settings; /** @type {Ansi} */ this.a = ansi; } run() { } } export default TTNAppServer;