UNPKG

311 BTypeScriptView Raw
1import { EventEmitter } from '@angular/core';
2import { Columns } from '../..';
3export declare class HeaderComponent {
4 column: Columns;
5 readonly update: EventEmitter<{
6 key: string;
7 value: string;
8 }[]>;
9 unifyKey(key: string): string;
10 onSearch(input: HTMLInputElement): void;
11}