* Gets entry options. * @returns {EntryOptions | undefined} the entry options for this chunk
()
| 547 | * @returns {EntryOptions | undefined} the entry options for this chunk |
| 548 | */ |
| 549 | getEntryOptions() { |
| 550 | for (const chunkGroup of this._groups) { |
| 551 | if (chunkGroup instanceof Entrypoint) { |
| 552 | return chunkGroup.options; |
| 553 | } |
| 554 | } |
| 555 | return undefined; |
| 556 | } |
| 557 | |
| 558 | /** |
| 559 | * Adds the provided chunk group to the chunk. |
no outgoing calls
no test coverage detected