@asi-ngtools/lib
Version:
This project is a little components library, simple to use, which will help you to simplify your project.
11 lines (10 loc) • 338 B
TypeScript
import { PipeTransform } from '@angular/core';
/**
* Pipe allowing to concat items
* items : items to concat
* separator : a separator
* property : sub item property (if needed)
*/
export declare class AsiConcatPipe implements PipeTransform {
transform(items: Array<any>, separator: string, property?: string): string | any[];
}