EmbeddedViewContext
Generic types: | DATA |
A type representing the context of an embedded view.
Properties
Name | Type | Description |
---|---|---|
_injector |
| |
$implicit |
| |
even |
| |
first |
| |
index |
| |
last |
| |
odd |
|
Presentation
type EmbeddedViewContext = {
$implicit: WritableSignal <DATA>;
index: WritableSignal <number>;
first : Signal <boolean>;
last : Signal <boolean>;
even: Signal <boolean>;
odd: Signal <boolean>;
_injector?: Injector ;
};