UNPKG

783 BTypeScriptView Raw
1import { Account } from "./Account";
2import { StringDict } from "./MsalTypes";
3/**
4 * @link AuthenticationParameters}AuthenticationParameters
5 */
6export 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};
24export declare function validateClaimsRequest(request: AuthenticationParameters): void;
25
\No newline at end of file