ng2-google-charts
Version:
Google Charts module for Angular 2 and beyond
21 lines (20 loc) • 862 B
TypeScript
import { OnInit, ElementRef } from '@angular/core';
import { GoogleChartsLoaderService } from '../google-charts-loader.service';
import * as i0 from "@angular/core";
export interface GoogleChartsControlInterface {
controlType: string;
options?: object;
state?: object;
component?: GoogleChartsControlComponent;
}
export declare class GoogleChartsControlComponent implements OnInit {
private el;
private loaderService;
data: GoogleChartsControlInterface;
wrapper: any;
constructor(el: ElementRef, loaderService: GoogleChartsLoaderService);
ngOnInit(): void;
ensureInit(): Promise<void>;
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleChartsControlComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<GoogleChartsControlComponent, "google-charts-control", never, { "data": "data"; }, {}, never, never>;
}