> For the complete documentation index, see [llms.txt](https://learn.squirrel365.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://learn.squirrel365.io/squirrel-addon-documentation/squirrel-helper-library/javascript/events/onpropertychangescomplete.md).

# onPropertyChangesComplete

```typescript
onPropertyChangesComplete(){
}
```

Called when all individual [onPropertyChange ](/squirrel-addon-documentation/squirrel-helper-library/javascript/events/onpropertychange.md)events have been sent. For example if something has happened in Squirrel which causes one or more bindings to be updated these individual bindings are sent as [onPropertyChange ](/squirrel-addon-documentation/squirrel-helper-library/javascript/events/onpropertychange.md)events. This onPropertyChangesComplete event is executed at the end to advise all changes have been sent to the addon.

This can be very useful if you need to wait for all changes to be received before processing the changes to state.

If you super the base class onPropertyChangesComplete method then it will add debug logs to your output<br>
