| 4 | |
| 5 | export type { DecodedSource, DecodedSourceMap } |
| 6 | export interface SourceMap { |
| 7 | readonly raw: string |
| 8 | readonly inline: string |
| 9 | comment(url: string): string |
| 10 | } |
| 11 | |
| 12 | function serializeSourceMap(map: DecodedSourceMap): string { |
| 13 | let generator = new SourceMapGenerator() |
no outgoing calls
no test coverage detected