UNPKG

@progress/kendo-angular-l10n

Version:
22 lines (21 loc) 939 B
/**----------------------------------------------------------------------------------------- * Copyright © 2021 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { OnChanges, SimpleChanges, OnInit, OnDestroy } from '@angular/core'; import { LocalizationService } from './localization.service'; /** * Base class that acts as a component messages container. * * For internal use. * @hidden */ export declare abstract class ComponentMessages implements OnChanges, OnInit, OnDestroy { protected service: LocalizationService; private subscription; protected readonly override: boolean; ngOnChanges(changes: SimpleChanges): void; ngOnInit(): void; protected register(changes: Object): void; ngOnDestroy(): void; }