| 11 | import * as util from "./util"; |
| 12 | |
| 13 | export interface PrintResultType { |
| 14 | code: string; |
| 15 | map?: any; |
| 16 | toString(): string; |
| 17 | } |
| 18 | |
| 19 | interface PrintResultConstructor { |
| 20 | new (code: any, sourceMap?: any): PrintResultType; |
no outgoing calls
no test coverage detected
searching dependent graphs…