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