@hxui/angular
Version:
This README includes the steps that are necessary to import the HxUi-angular into a project or to contribute with development.
14 lines (13 loc) • 478 B
TypeScript
/**
* Example use
* Array of objects: *ngFor="#row of rows | simpleSearch : 'the search term'"
*/
import { PipeTransform } from '@angular/core';
export interface ISimpleSearchPipe extends PipeTransform {
searchValue(item: any, searchTerm: string): boolean;
}
export declare class SimpleSearchPipe implements ISimpleSearchPipe {
constructor();
searchValue: (item: any, searchTerm?: string) => boolean;
transform(items: any[], args: any[]): any;
}