1 | import { Account } from "./Account";
|
2 | import { StringDict } from "./MsalTypes";
|
3 |
|
4 |
|
5 |
|
6 | export declare type AuthenticationParameters = {
|
7 | scopes?: Array<string>;
|
8 | extraScopesToConsent?: Array<string>;
|
9 | prompt?: string;
|
10 | extraQueryParameters?: StringDict;
|
11 | claimsRequest?: string;
|
12 | authority?: string;
|
13 | state?: string;
|
14 | correlationId?: string;
|
15 | account?: Account;
|
16 | sid?: string;
|
17 | loginHint?: string;
|
18 | forceRefresh?: boolean;
|
19 | redirectUri?: string;
|
20 | redirectStartPage?: string;
|
21 | authorityMetadata?: string;
|
22 | onRedirectNavigate?: ((url: string) => void | boolean);
|
23 | };
|
24 | export declare function validateClaimsRequest(request: AuthenticationParameters): void;
|
25 |
|
\ | No newline at end of file |