К
Size: a a a
К
OS
export interface TableDialogData<T, V> {
LoadAction: ActionCreator<T, () => TypedAction<T>>;
ResultAction: ActionCreator<V, () => TypedAction<V>>;
}
OS
К
export interface TableDialogData {
LoadAction: ActionCreator<any, () => TypedAction<any>>;
ResultAction: ActionCreator<any, (props: {rows: any}) => ({rows: any} & TypedAction<any>)>;
}
IF
MZ
IF
MZ
N
IF
С
nt
Д
<app-table [testList]="list"></app-table>
MT
<app-table [testList]="list"></app-table>
MT
ngOnChanges(changes: SimpleChanges): void {
if (changes['testList']) {
// do smth
}
}
Д
A
nt
A
MT