ui-for-firebase-authentication
Version:
UI for Firebase Authentication (Firebase UI alternative supporting v9+)
10 lines (9 loc) • 465 B
TypeScript
import { SignInOption } from "../SignInOption";
/**
* Creates a button for a sign in provider. This will create a button that can be used to sign in with the provided provider.
*
* @param signInOption The sign in option to create a button for.
* @returns The button element that can be used to sign in with the provided provider.
* */
declare function createButtonForProvider(signInOption: SignInOption): HTMLButtonElement;
export { createButtonForProvider };