What does a dynamic `import()` call return in TypeScript?
-
A
The module object synchronously, similar to `require()`
-
B
A `Promise` that resolves to the module object, enabling lazy loading
-
C
A `Symbol` referencing the module for later resolution
-
D
A generator that yields module exports one by one