@thiagoprz/fulltext-search-pipe
Version:
Angular pipe with full text search functionality
16 lines (15 loc) • 354 B
TypeScript
export declare class FulltextSearchPipe {
constructor();
/**
* Transform method pipe
* @param string value
* @param string query
* @param any field
*/
transform(value: any, query: string, field: any): any;
/**
* Removing accents
* @param string value
*/
removeAccents(value: string): string;
}