1 | import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
2 | import { FormControl } from '@angular/forms';
|
3 | import { DefaultFilter } from './default-filter';
|
4 | export declare class InputFilterComponent extends DefaultFilter implements OnInit, OnChanges {
|
5 | inputControl: FormControl;
|
6 | constructor();
|
7 | ngOnInit(): void;
|
8 | ngOnChanges(changes: SimpleChanges): void;
|
9 | }
|