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