UNPKG

refire-react

Version:

React components and helpers for Refire

15 lines (14 loc) 556 B
/// <reference types="react" /> import * as React from "react"; import { Component } from "react"; import * as ReactRedux from "react-redux"; export interface LogoutProps { readonly children?: any; readonly dispatch?: ReactRedux.Dispatch<any>; } export declare class FirebaseLogout extends Component<LogoutProps & ReactRedux.DispatchProp<any>, {}> { logout: () => void; render(): React.ReactElement<any>; } declare const _default: React.ComponentClass<Pick<LogoutProps & ReactRedux.DispatchProp<any>, "children">>; export default _default;