| 7 | } |
| 8 | |
| 9 | interface Promise<T> { |
| 10 | // This is an incomplete list of methods added to Promise.prototype by the |
| 11 | // meteor-promise npm package. TODO Eventually these declarations should be |
| 12 | // moved into that package. |
| 13 | await: () => T; |
| 14 | } |
| 15 | |
| 16 | interface Function { |
| 17 | // func-utils.ts makes usage of this feature |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…