componentProperties |
- Partial<{[P in keyof T]: T[P];}> (optional) |
- If using the `cypress/angular-signals` test harness, this type is adapted to `Partial<{[P in keyof T]: T[P] extends InputSignal ? InputSignal | WritableSignal | V : T[P]}>` to allow for generic types to be wrapped inside a signal |
+
+ Partial<{[P in keyof T]: T[P] extends InputSignal<infer V>
+ ? InputSignal<V> | WritableSignal<V> | V : T[P]}>
+ (optional)
+ |
+
+ {' '}
+ signal based inference types need only apply if you are using signals within
+ your component tests
+ |