* Check whether the given `ts.SourceFile` is a shim file. * * If this returns false, the file is user-provided.
(sf: ts.SourceFile)
| 279 | * If this returns false, the file is user-provided. |
| 280 | */ |
| 281 | isShim(sf: ts.SourceFile): boolean { |
| 282 | return isShim(sf); |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * Check whether the given `ts.SourceFile` is a resource file. |