()
| 368 | } |
| 369 | |
| 370 | finish(): Manifest { |
| 371 | const assetGroups = Array.from(this.assetGroups.values()).map((group) => |
| 372 | group.toManifestGroup(), |
| 373 | ); |
| 374 | const hashTable = {}; |
| 375 | return { |
| 376 | configVersion: 1, |
| 377 | timestamp: 1234567890123, |
| 378 | index: '/index.html', |
| 379 | assetGroups, |
| 380 | navigationUrls: [], |
| 381 | navigationRequestStrategy: 'performance', |
| 382 | hashTable, |
| 383 | }; |
| 384 | } |
| 385 | } |
nothing calls this directly
no test coverage detected