GObject.ParamSpec.prototype.get_redirect_target

function get_redirect_target(): GObject.ParamSpec {
    // Gjs wrapper for g_param_spec_get_redirect_target()
}
  

If the paramspec redirects operations to another paramspec, returns that paramspec. Redirect is used typically for providing a new implementation of a property in a derived type while preserving all the properties from the parent type. Redirection is established by creating a property of type GObject.ParamSpecOverride. See GObject.ObjectClass.override_property for an example of the use of this capability.

Since 2.4

Returns

paramspec to which requests on this paramspec should be redirected, or null if none.