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