UNPKG

refire-react

Version:

React components and helpers for Refire

19 lines (18 loc) 569 B
/// <reference types="react" /> import * as PropTypes from "prop-types"; import * as React from "react"; import { Component } from "react"; import { syncFirebaseAPI } from "refire"; export interface RefireProviderProps { syncFirebase: syncFirebaseAPI; } export declare class RefireProvider extends Component<RefireProviderProps, {}> { static childContextTypes: { syncFirebase: PropTypes.Validator<any>; }; getChildContext(): { syncFirebase: syncFirebaseAPI; }; render(): React.ReactElement<any>; } export default RefireProvider;