()
| 391 | loadModules(); |
| 392 | |
| 393 | export function reload() { |
| 394 | clearModulesCache(); |
| 395 | loadModules(); |
| 396 | // trigger re-decoration when components |
| 397 | // get re-rendered |
| 398 | decorated = {}; |
| 399 | } |
| 400 | |
| 401 | function getProps(name: keyof typeof propsDecorators, props: any, ...fnArgs: any[]) { |
| 402 | const decorators = propsDecorators[name]; |
nothing calls this directly
no test coverage detected