UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

8 lines (7 loc) 556 B
import { Identity, ResetAccountRequest, UserAuthenticationInformation } from "../../models"; export declare class IdentityAuthenticationService { private httpClient; updateAuthInfo: (userIdentity: Identity, authinfo: UserAuthenticationInformation, sendAuthSetupLinkByEmail?: boolean, sendAccountStatusChangedEmail?: boolean) => Promise<string>; getAuthInfo: (userIdentity: Identity) => Promise<UserAuthenticationInformation>; resetUserAuthentication: (userIdentity: Identity, resetAccountRequest: ResetAccountRequest) => Promise<string>; }