( to: ComponentInjectOptions | undefined, from: ComponentInjectOptions, )
| 1058 | } |
| 1059 | |
| 1060 | function mergeInject( |
| 1061 | to: ComponentInjectOptions | undefined, |
| 1062 | from: ComponentInjectOptions, |
| 1063 | ) { |
| 1064 | return mergeObjectOptions(normalizeInject(to), normalizeInject(from)) |
| 1065 | } |
| 1066 | |
| 1067 | function normalizeInject( |
| 1068 | raw: ComponentInjectOptions | undefined, |
nothing calls this directly
no test coverage detected