@studiohyperdrive/ngx-utils
Version:
A series of abstracts, utils, pipes and services for Angular applications.
14 lines (13 loc) • 502 B
TypeScript
import { PipeTransform } from '@angular/core';
import * as i0 from "@angular/core";
export declare class JoinPipe implements PipeTransform {
/**
* Transforms an array to a joined string
*
* @param values - An array of values
* @param separator - A separator we wish to use
*/
transform(values: Array<string>, separator?: string): string;
static ɵfac: i0.ɵɵFactoryDeclaration<JoinPipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<JoinPipe, "join", true>;
}