(
options?: SourceMapOptions,
)
| 219 | } |
| 220 | |
| 221 | generateMap( |
| 222 | options?: SourceMapOptions, |
| 223 | ): Omit<SourceMap, 'sourcesContent'> & { sourcesContent: Array<string | null> } { |
| 224 | return new SourceMap(this.generateDecodedMap(options)) as Omit<SourceMap, 'sourcesContent'> & { |
| 225 | sourcesContent: Array<string | null> |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | getIndentString(): string { |
| 230 | const indentStringCounts = {} |
no test coverage detected