UNPKG

@progress/kendo-angular-gauges

Version:
26 lines (25 loc) 1.42 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { AfterContentInit, AfterContentChecked, OnDestroy, QueryList } from '@angular/core'; import { ConfigurationService, CollectionChangesService } from "../services"; import { CollectionItemComponent } from "./collection-item.component"; import * as i0 from "@angular/core"; /** * @hidden */ export declare abstract class CollectionComponent implements AfterContentInit, AfterContentChecked, OnDestroy { protected key: string; protected configurationService: ConfigurationService; protected collectionChangesService: CollectionChangesService; children: QueryList<CollectionItemComponent>; private subscription; constructor(key: string, configurationService: ConfigurationService, collectionChangesService: CollectionChangesService); ngOnDestroy(): void; ngAfterContentInit(): void; ngAfterContentChecked(): void; private readItems; static ɵfac: i0.ɵɵFactoryDeclaration<CollectionComponent, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<CollectionComponent, never, never, {}, {}, never, never, false, never>; }