UNPKG

@azure/msal-browser

Version:
29 lines 882 B
import { UserAccountAttributes } from "./UserAccountAttributes.js"; export type CustomAuthActionInputs = { correlationId?: string; }; export type AccountRetrievalInputs = CustomAuthActionInputs; export type SignInInputs = CustomAuthActionInputs & { username: string; password?: string; scopes?: Array<string>; claims?: string; }; export type SignUpInputs = CustomAuthActionInputs & { username: string; password?: string; attributes?: UserAccountAttributes; }; export type ResetPasswordInputs = CustomAuthActionInputs & { username: string; }; export type AccessTokenRetrievalInputs = { forceRefresh: boolean; scopes?: Array<string>; claims?: string; }; export type SignInWithContinuationTokenInputs = { scopes?: Array<string>; claims?: string; }; //# sourceMappingURL=CustomAuthActionInputs.d.ts.map