(str: string, options?: BundleOptions)
| 105 | } |
| 106 | |
| 107 | append(str: string, options?: BundleOptions): this { |
| 108 | this.addSource({ |
| 109 | content: new MagicString(str), |
| 110 | separator: (options && options.separator) || '', |
| 111 | }) |
| 112 | |
| 113 | return this |
| 114 | } |
| 115 | |
| 116 | clone(): this { |
| 117 | const bundle = new Bundle({ |
no test coverage detected