* @internal
(
comp: ConcreteComponent & CustomElementOptions,
parentComp?: ConcreteComponent,
)
| 750 | * @internal |
| 751 | */ |
| 752 | _injectChildStyle( |
| 753 | comp: ConcreteComponent & CustomElementOptions, |
| 754 | parentComp?: ConcreteComponent, |
| 755 | ): void { |
| 756 | this._applyStyles(comp.styles, comp, parentComp) |
| 757 | } |
| 758 | |
| 759 | /** |
| 760 | * @internal |
nothing calls this directly
no test coverage detected