I would like to have access to the class of this web component in my Angular application in order to create a query using a type predicate like the following: angular viewchild query targeting the component.
The only thing I've found is the interface exported here: import { SwiperContainer } from 'swiper/element' but for a type predicate we need the class of the component.
Currently, I'm using the string predicate but I would prefer using the type predicate for simple use case.
I would like to have access to the class of this web component in my Angular application in order to create a query using a type predicate like the following: angular viewchild query targeting the component.
The only thing I've found is the interface exported here:
import { SwiperContainer } from 'swiper/element'but for a type predicate we need the class of the component.Currently, I'm using the string predicate but I would prefer using the type predicate for simple use case.