WebJamApps/breakpointministries

View on GitHub
src/App/AppTypes.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Dispatch } from 'react';
import { Auth } from '../redux/mapStoreToProps';

export interface AppProps {
  dispatch: Dispatch<unknown>,
  auth: Auth
}

export interface GoogleBody {
  clientId: string,
  redirectUri: string,
  code: string,
  state(): string,
}