import { OnInit, TemplateRef, ViewContainerRef } from '@angular/core'; import { GoogleMapsApiService } from '@bespunky/angular-google-maps/core'; /** * Makes sure that the element it is placed on only gets rendered once Google Maps API has fully loaded. * * @export * @class SafeDirective * @implements {OnInit} */ export declare class SafeDirective implements OnInit { private templateRef; private viewContainerRef; private api; constructor(templateRef: TemplateRef, viewContainerRef: ViewContainerRef, api: GoogleMapsApiService); /** * Waits for maps API to load, then renderes the element. * */ ngOnInit(): void; }