@carbon/charts
Version:
Carbon Charts component library
12 lines (11 loc) • 382 B
TypeScript
import { ChartModel } from '../model/model';
import { Services } from '../interfaces/services';
export declare class Service {
protected model: ChartModel;
protected services: Services;
constructor(model: ChartModel, services: Services);
init(): void;
update(): void;
setModel(newObj: ChartModel): void;
setServices(newObj: Services): void;
}