(url: string)
| 151 | } |
| 152 | |
| 153 | setManifestURL(url: string): BundleBuilder { |
| 154 | validateExchangeURL(url); |
| 155 | this.bundleBuilder.addSection('manifest', url); |
| 156 | return this.bundleBuilder; |
| 157 | } |
| 158 | |
| 159 | setIndexEntry(url: string, responseLength: number): void { |
| 160 | this.index.set(url, [ |
nothing calls this directly
no test coverage detected