[AAE-10767] Separate core card view logic from content-services and add documentation to reflect the changes (#7952)

This commit is contained in:
Diogo Bastos
2022-12-16 15:28:36 +00:00
committed by GitHub
parent 8d074e8b33
commit 02578dcdc5
27 changed files with 487 additions and 65 deletions

View File

@@ -0,0 +1,28 @@
---
Title: Update Notification Interface
Added: v6.0.0
Status: Active
Last reviewed: 2022-11-25
---
# [Update Notification Interface](../../../lib/core/src/lib/card-view/interfaces/update-notification.interface.ts "Defined in update-notification.interface.ts")
## Basic usage
```ts
export interface UpdateNotification {
target: CardViewBaseItemModel;
changed: any;
}
```
## Properties
| Name | Type | Description |
| ---- | ---- | ----------- |
| target | [`CardViewBaseItemModel`](../../../lib/core/src/lib/card-view/models/card-view-baseitem.model.ts) | The target for the update notification. |
| changed | `any` | The changed value on the update notification. |
## See also
- [BaseCardViewUpdate interface](../interfaces/base-card-view-update.interface.md)