| 297 | } |
| 298 | |
| 299 | export interface BasicSourceMapConsumerConstructor { |
| 300 | prototype: BasicSourceMapConsumer; |
| 301 | |
| 302 | new (rawSourceMap: RawSourceMap | string): Promise<BasicSourceMapConsumer>; |
| 303 | |
| 304 | /** |
| 305 | * Create a BasicSourceMapConsumer from a SourceMapGenerator. |
| 306 | * |
| 307 | * @param sourceMap |
| 308 | * The source map that will be consumed. |
| 309 | */ |
| 310 | fromSourceMap(sourceMap: SourceMapGenerator): Promise<BasicSourceMapConsumer>; |
| 311 | } |
| 312 | |
| 313 | export const BasicSourceMapConsumer: BasicSourceMapConsumerConstructor; |
| 314 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…