UNPKG

strapi-plugin-firebase-authentication

Version:

Allows easy integration between clients utilizing Firebase for authentication and Strapi

14 lines (13 loc) 630 B
import React from "react"; import { User } from "../../../../../model/User"; interface FirebaseTableProps { action: React.ReactNode; createAction?: React.ReactNode; isLoading: boolean; rows: User[]; onConfirmDeleteAll: (idsToDelete: Array<string | number>, destination: string | null) => Promise<void>; onResetPasswordClick: (data: User) => void; onDeleteAccountClick: (data: User) => void; } export declare const FirebaseTable: ({ action, createAction, rows, onConfirmDeleteAll, onResetPasswordClick, onDeleteAccountClick, }: FirebaseTableProps) => import("react/jsx-runtime").JSX.Element; export {};