Commit iniziale
This commit is contained in:
17
node_modules/@azure/msal-browser/dist/navigation/INavigationClient.d.ts
generated
vendored
Normal file
17
node_modules/@azure/msal-browser/dist/navigation/INavigationClient.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import { NavigationOptions } from "./NavigationOptions.js";
|
||||
export interface INavigationClient {
|
||||
/**
|
||||
* Navigates to other pages within the same web application
|
||||
* Return false if this doesn't cause the page to reload i.e. Client-side navigation
|
||||
* @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>;
|
||||
}
|
||||
//# sourceMappingURL=INavigationClient.d.ts.map
|
||||
Reference in New Issue
Block a user