ngx-echarts
Version:
<!-- Badges section here. --> [][npm-badge-url] [][npm-badge-url] [][ci
12 lines (11 loc) • 431 B
TypeScript
import { SimpleChanges } from '@angular/core';
import { Observable } from 'rxjs';
export declare class ChangeFilter {
private _changes;
constructor(_changes: SimpleChanges);
static of(changes: SimpleChanges): ChangeFilter;
notEmpty<T>(key: string): Observable<T>;
has<T>(key: string): Observable<T>;
notFirst<T>(key: string): Observable<T>;
notFirstAndEmpty<T>(key: string): Observable<T>;
}