linkSimpleChange
npm Package | @angular/core |
---|---|
Module | import { SimpleChange } from '@angular/core'; |
Source | core/src/change_detection/change_detection_util.ts |
linkOverview
class SimpleChange {
constructor(previousValue: any, currentValue: any, firstChange: boolean)
previousValue: any
currentValue: any
firstChange: boolean
isFirstChange(): boolean
}
linkDescription
Represents a basic change from a previous to a new value.