Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow notifyPropertyChange to be imported from @ember/object #17357

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/@ember/-internals/metal/lib/property_events.ts
Expand Up @@ -31,6 +31,7 @@ let deferred = 0;
@param {String} keyName The property key (or path) that will change.
@param {Meta} meta The objects meta.
@return {void}
@since 3.1.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This marks this available since 3.1.0 but this commit (and the one exposing the export from @ember/object is not in a tag till v3.8.0-beta.1. How does that work?

@public
*/
function notifyPropertyChange(obj: object, keyName: string, _meta?: Meta): void {
Expand Down