UNPKG

strapi-plugin-firebase-authentication

Version:

Allows easy integration between clients utilizing Firebase for authentication and Strapi

14 lines (13 loc) 538 B
import { User } from "../../../../../model/User"; interface FirebaseTableRowsProps { rows: User[]; entriesToDelete?: string[]; onSelectRow?: ({ name, value }: { name: string; value: boolean; }) => void; onResetPasswordClick: (data: User) => void; onDeleteAccountClick: (data: User) => void; } export declare const FirebaseTableRows: ({ rows, entriesToDelete, onSelectRow, onResetPasswordClick, onDeleteAccountClick, }: FirebaseTableRowsProps) => import("react/jsx-runtime").JSX.Element; export {};