GObject.Object.prototype.notify

function notify(property_name: String): void {
    // Gjs wrapper for g_object_notify()
}
  

Emits a "notify" signal for the property property_name on object.

When possible, eg. when signaling a property change from within the class that registered the property, you should use GObject.Object.prototype.notify_by_pspec instead.

Note that emission of the notify signal may be blocked with GObject.Object.prototype.freeze_notify. In this case, the signal emissions are queued and will be emitted (in reverse order) when GObject.Object.prototype.thaw_notify is called.

property_name

the name of a property installed on the class of object.