* Tap to access the application class instance. * * @param callback - Callback function to execute when app is created
(callback: (app: ApplicationService) => void)
| 106 | * @param callback - Callback function to execute when app is created |
| 107 | */ |
| 108 | tap(callback: (app: ApplicationService) => void): this { |
| 109 | this.#tapCallbacks.add(callback) |
| 110 | return this |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Get instance of the HTTPServerProcess |
no outgoing calls
no test coverage detected