@angular-generic-table/core
Version:
A generic table component for Angular
11 lines (10 loc) • 588 B
TypeScript
import { PipeTransform } from '@angular/core';
import { GtConfigField } from '../interfaces/gt-config-field';
import { GtRow } from '../interfaces/gt-row';
import { GtConfigSetting } from '../interfaces/gt-config-setting';
import { GtInformation } from '../interfaces/gt-information';
export declare class GtSearchPipe<R extends GtRow> implements PipeTransform {
/** Return property */
private getProperty;
transform(allRows: any, searchTerms: string, gtInfo: GtInformation, settings: Array<GtConfigSetting>, fields: Array<GtConfigField<R, any>>, refreshData: number): any;
}