| 23 | |
| 24 | /** This class represents parsed Web Bundle. */ |
| 25 | export class Bundle { |
| 26 | version: FormatVersion; |
| 27 | private b1PrimaryURL: string | null = null; // only valid in format version b1 |
| 28 | private sections: { [key: string]: unknown } = {}; |
nothing calls this directly
no outgoing calls
no test coverage detected