(url: string)
| 142 | } |
| 143 | |
| 144 | setPrimaryURL(url: string): BundleBuilder { |
| 145 | if (this.primaryURL !== null) { |
| 146 | throw new Error('Primary URL is already set'); |
| 147 | } |
| 148 | validateExchangeURL(url); |
| 149 | this.primaryURL = url; |
| 150 | return this.bundleBuilder; |
| 151 | } |
| 152 | |
| 153 | setManifestURL(url: string): BundleBuilder { |
| 154 | validateExchangeURL(url); |
nothing calls this directly
no test coverage detected