UNPKG

343 BTypeScriptView Raw
1import { MapsAPILoader } from './maps-api-loader';
2/**
3 * When using the NoOpMapsAPILoader, the Google Maps API must be added to the page via a `<script>`
4 * Tag.
5 * It's important that the Google Maps API script gets loaded first on the page.
6 */
7export declare class NoOpMapsAPILoader implements MapsAPILoader {
8 load(): Promise<void>;
9}