(
from: string,
moduleName?: string,
)
| 363 | } |
| 364 | |
| 365 | async unstable_importModule( |
| 366 | from: string, |
| 367 | moduleName?: string, |
| 368 | ): Promise<unknown | void> { |
| 369 | return this.esmLoader.loadAndEvaluate(from, moduleName); |
| 370 | } |
| 371 | |
| 372 | requireModule<T = unknown>( |
| 373 | from: string, |
no test coverage detected