ui-for-firebase-authentication
Version:
UI for Firebase Authentication (Firebase UI alternative supporting v9+)
12 lines (11 loc) • 583 B
TypeScript
import { SignInOption } from "../SignInOption";
import { CallbackBindingsInterface } from "../CallbackBindingsInterface";
/**
* Initializes the sign in UI. This will render the sign in options into the target element.
*
* @param callbacks
* @param signInOptions The sign in options to display to the user.
* @param targetElement The element to render the UI into. This element will be emptied before rendering.
* */
declare function Initialize_UI(callbacks: CallbackBindingsInterface, signInOptions: SignInOption[], targetElement: HTMLElement): void;
export { Initialize_UI };