SimpleChange

From Get docs
< @angular/coreAngular/docs/11/api/core/simplechange


SimpleChange

class

Represents a basic change from a previous to a new value for a single property on a directive instance. Passed as a value in a SimpleChanges object to the ngOnChanges hook.

class SimpleChange {
  constructor(previousValue: any, currentValue: any, firstChange: boolean)
  previousValue: any
  currentValue: any
  firstChange: boolean
  isFirstChange(): boolean
}

See also

  • OnChanges

Constructor

constructor(previousValue: any, currentValue: any, firstChange: boolean)

Parameters
previousValue any
currentValue any
firstChange boolean


Properties

Property Description
previousValue: any Declared in Constructor
currentValue: any Declared in Constructor
firstChange: boolean Declared in Constructor

Methods

Check whether the new value is the first value assigned.

isFirstChange(): boolean

Parameters

There are no parameters.

Returns

boolean



© 2010–2021 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v11.angular.io/api/core/SimpleChange