UNPKG

jedifocus.navigations

Version:
34 lines (29 loc) 778 B
/* __.-._ * '-._"7' JediFocus * /'.-c * | /T Do. Or do not. * _)_/LI There is no try. * * This project is a part of the “Byte-Sized JavaScript” videocasts. * You can watch “Byte-Sized JavaScript” at: https://bytesized.tv/ * * MIT Licensed — See LICENSE.md * * Send your comments, suggestions, and feedback to me@volkan.io */ import React from 'react'; declare module 'jedifocus-hocs-types' { declare type AppConfig = { apiKey: string, authDomain: string, databaseURL: string, projectId: string, storageBucket: string, messagingSenderId: string, email: string, password: string, fbUserId: string }; declare type ReactNode = React.ReactNode; declare type ReactNodeFactory = () => ReactNode; }