GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
2.2 KiB

2 months ago
  1. /**
  2. * @license
  3. * Copyright 2017 Google LLC
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. import { Auth } from '../src/model/public_types';
  18. /**
  19. * This interface is intended only for use by @firebase/auth-compat, do not use directly
  20. */
  21. export * from '../index';
  22. export { SignInWithIdpResponse } from '../src/api/authentication/idp';
  23. export { AuthErrorCode } from '../src/core/errors';
  24. export { PersistenceInternal } from '../src/core/persistence';
  25. export { _persistenceKeyName } from '../src/core/persistence/persistence_user_manager';
  26. export { UserImpl } from '../src/core/user/user_impl';
  27. export { _getInstance } from '../src/core/util/instantiator';
  28. export { PopupRedirectResolverInternal, EventManager, AuthEventType } from '../src/model/popup_redirect';
  29. export { UserCredentialInternal, UserParameters } from '../src/model/user';
  30. export { AuthInternal, ConfigInternal } from '../src/model/auth';
  31. export { DefaultConfig, AuthImpl, _castAuth } from '../src/core/auth/auth_impl';
  32. export { ClientPlatform, _getClientVersion } from '../src/core/util/version';
  33. export { _generateEventId } from '../src/core/util/event_id';
  34. export { TaggedWithTokenResponse } from '../src/model/id_token';
  35. export { _fail, _assert } from '../src/core/util/assert';
  36. export { AuthPopup } from '../src/platform_browser/util/popup';
  37. export { _getRedirectResult } from '../src/platform_browser/strategies/redirect';
  38. export { _overrideRedirectResult } from '../src/core/strategies/redirect';
  39. export { cordovaPopupRedirectResolver } from '../src/platform_cordova/popup_redirect/popup_redirect';
  40. export { FetchProvider } from '../src/core/util/fetch_provider';
  41. export { SAMLAuthCredential } from '../src/core/credentials/saml';
  42. export declare function addFrameworkForLogging(auth: Auth, framework: string): void;