UNPKG

1.44 kBTypeScriptView Raw
1import { ModuleWithProviders } from '@angular/core';
2import { SebmGoogleMapKmlLayer } from './directives/google-map-kml-layer';
3import { SebmGoogleMap } from './directives/google-map';
4import { SebmGoogleMapCircle } from './directives/google-map-circle';
5import { SebmGoogleMapInfoWindow } from './directives/google-map-info-window';
6import { SebmGoogleMapMarker } from './directives/google-map-marker';
7import { SebmGoogleMapPolygon } from './directives/google-map-polygon';
8import { SebmGoogleMapPolyline } from './directives/google-map-polyline';
9import { SebmGoogleMapPolylinePoint } from './directives/google-map-polyline-point';
10import { LazyMapsAPILoaderConfigLiteral } from './services/maps-api-loader/lazy-maps-api-loader';
11/**
12 * @internal
13 */
14export declare function coreDirectives(): (typeof SebmGoogleMapKmlLayer | typeof SebmGoogleMapCircle | typeof SebmGoogleMapMarker | typeof SebmGoogleMapInfoWindow | typeof SebmGoogleMapPolygon | typeof SebmGoogleMapPolylinePoint | typeof SebmGoogleMapPolyline | typeof SebmGoogleMap)[];
15/**
16 * The angular2-google-maps core module. Contains all Directives/Services/Pipes
17 * of the core module. Please use `AgmCoreModule.forRoot()` in your app module.
18 */
19export declare class AgmCoreModule {
20 /**
21 * Please use this method when you register the module at the root level.
22 */
23 static forRoot(lazyMapsAPILoaderConfig?: LazyMapsAPILoaderConfigLiteral): ModuleWithProviders;
24}