* @private * @returns {Promise }
()
| 1859 | * @returns {Promise<void>} |
| 1860 | */ |
| 1861 | async setupApp() { |
| 1862 | /** @type {A | undefined} */ |
| 1863 | this.app = |
| 1864 | /** @type {A} */ |
| 1865 | ( |
| 1866 | typeof this.options.app === "function" |
| 1867 | ? await this.options.app() |
| 1868 | : (await getExpress())() |
| 1869 | ); |
| 1870 | } |
| 1871 | |
| 1872 | /** |
| 1873 | * @private |