(name: string)
| 37 | } |
| 38 | |
| 39 | export function getImpl(name: string) { |
| 40 | if (__DEV__) { |
| 41 | if (!implsStore[name]) { |
| 42 | error(`Implementation of ${name} doesn't exists.`); |
| 43 | } |
| 44 | } |
| 45 | return implsStore[name]; |
| 46 | } |
no test coverage detected
searching dependent graphs…