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, separator: string, base?: string, property?: string): string | any[]; }