ngx-echarts
Version:
<!-- Badges section here. -->
12 lines (11 loc) • 447 B
TypeScript
import { SimpleChanges } from '@angular/core';
export declare class ChangeFilterV2 {
private subject;
private subscriptions;
doFilter(changes: SimpleChanges): void;
dispose(): void;
notEmpty<T>(key: string, handler: (t: T) => void): void;
has<T>(key: string, handler: (t: T) => void): void;
notFirst<T>(key: string, handler: (t: T) => void): void;
notFirstAndEmpty<T>(key: string, handler: (t: T) => void): void;
}