LmnRowContext
Generic types: | T |
Context for a row in the table, including signals for reactive updates.
Presentation
type LmnRowContext = Signalize <LmnRowBaseInfo> & {
/** The data object that the row is representing. */
$implicit: WritableSignal <T>;
/** Signal for the index of the row. */
index: WritableSignal <number>;
};