UNPKG

lml-main

Version:

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

10 lines (9 loc) 285 B
import * as React from 'react'; export interface GoogleProps { gmapsKey: string; } export interface GoogleComponentProps extends GoogleProps { mapsAPILoadedAction: () => any; mapsAuthErrorAction: () => any; } export declare const Google: React.ComponentClass<GoogleProps>;