ems-web-app-cognito
Version:
This angular.io module includes a component, service and supporting classes that wrap the Amazon Cognito Identity SDK to enable simple username/password authentication.
34 lines (33 loc) • 1.12 kB
TypeScript
export declare class CognitoStrings {
static onUserPasswordChangeSuccessful: string;
static onVerificationCodeSent: string;
static onNewPasswordRequired: string;
static onFirstLogin: string;
static onTooManyAttempts: string;
static onPasswordUpdated: string;
static labelEmail: string;
static labelPassword: string;
static labelForgotPassword: string;
static labelNewPassword: string;
static labelCurrentPassword: string;
static labelConfirmNewPassword: string;
static labelSubmit: string;
static labelCode: string;
static labelClose: string;
static labelUseRegularPassword: string;
static labelOtp: string;
static labelOtpEnter: string;
static labelMagicLink: string;
static labelPasskeys: string;
static labelPasskeyEnter: string;
static labelPasswordRequirement: string;
static labelSso: string;
static labelOrSignInWith: string;
}
export declare class EphemeralStorage {
private _cache;
getItem(key: string): any;
setItem(key: string, value: any): string;
removeItem(key: string): void;
clear(): void;
}