Question about ConfigurableResource generics -- it...
# ask-community
c
Question about ConfigurableResource generics -- it seems like there's a
TResValue
generic for ConfigurableResources... what is this supposed to be the data type of? The class itself? i.e.
Copy code
class MyResource(ConfigurableResource["MyResource"]):
s
@ben - mind chiming in?
b
Hi Chaitya - this should by default be bound to
MyResource
- this is mainly meant for the factory case where the resource outputs a different object to user code.
🙏 1