Files
server_debian_macro/node_modules/@azure/msal-browser/dist/navigation/NavigationClient.d.ts
2025-02-18 22:59:07 +00:00

23 lines
870 B
TypeScript

import { INavigationClient } from "./INavigationClient.js";
import { NavigationOptions } from "./NavigationOptions.js";
export declare class NavigationClient implements INavigationClient {
/**
* Navigates to other pages within the same web application
* @param url
* @param options
*/
navigateInternal(url: string, options: NavigationOptions): Promise<boolean>;
/**
* Navigates to other pages outside the web application i.e. the Identity Provider
* @param url
* @param options
*/
navigateExternal(url: string, options: NavigationOptions): Promise<boolean>;
/**
* Default navigation implementation invoked by the internal and external functions
* @param url
* @param options
*/
private static defaultNavigateWindow;
}
//# sourceMappingURL=NavigationClient.d.ts.map