1 | import { Auth } from './Auth';
|
2 | import { CognitoHostedUIIdentityProvider, SignUpParams, GRAPHQL_AUTH_MODE } from './types/Auth';
|
3 | import { CognitoUser, CookieStorage, appendToCognitoUserAgent } from 'amazon-cognito-identity-js';
|
4 | import { AuthErrorStrings } from './common/AuthErrorStrings';
|
5 | /**
|
6 | * @deprecated use named import
|
7 | */
|
8 | export default Auth;
|
9 | export { Auth, CognitoUser, CookieStorage, CognitoHostedUIIdentityProvider, SignUpParams, appendToCognitoUserAgent, AuthErrorStrings, GRAPHQL_AUTH_MODE, };
|