UNPKG

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