I am currently working with Angular 8.
My goal is to customize the method function for the following code snippet:
/**
* This property allows you to override the method that is used to open the login url,
* allowing a way for implementations to specify their own method of routing to new
* urls.
*/
public openUri?: ((uri: string) => void) = uri => {
location.href = uri;
}
This code is found in the documentation at
Can someone guide me on how to properly override this method?