Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Variables

CapacitorFirebaseAuth

CapacitorFirebaseAuth: unknown = ...

Functions

facebookAuth

  • facebookAuth(): Promise<unknown>
  • description

    Opens the popup and returns the token of the logged account

    example
    const MODULES = require("@iotechpis/modules-front");
    MODULES.Firebase.Auth.facebookAuth()
    .then(response => {
    console.log(response)
    })
    .catch(error => {
    throw error;
    })

    Returns Promise<unknown>

googleAuth

  • googleAuth(): Promise<unknown>
  • description

    Opens the popup and returns the token of the logged account

    example
    const MODULES = require("@iotechpis/modules-front");
    MODULES.Firebase.Auth.googleAuth()
    .then(response => {
    console.log(response)
    })
    .catch(error => {
    throw error;
    })

    Returns Promise<unknown>

twitterAuth

  • twitterAuth(): Promise<unknown>
  • description

    Opens the popup and returns the token of the logged account

    example
    const MODULES = require("@iotechpis/modules-front");
    MODULES.Firebase.Auth.twitterAuth()
    .then(response => {
    console.log(response)
    })
    .catch(error => {
    throw error;
    })

    Returns Promise<unknown>

Generated using TypeDoc