UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

8 lines (7 loc) 386 B
import { MapsLoadedAction, MapsAuthErrorAction, GoogleTestAction } from '../../google/actions/google'; export interface GoogleState { mapsApiLoaded: boolean; mapsAuthError: boolean; } export declare const initialGoogleState: GoogleState; export declare const googleReducer: (state: GoogleState, action: MapsLoadedAction | MapsAuthErrorAction | GoogleTestAction) => GoogleState;