/** * Joins all the elements of an iterable sequence into a string, separated by the specified separator string. * @param separator the separator string placed between each of the items. * @param values a sequence of items to join. Every item inside will be converted into `string` first * before appended to the output. */ export declare function join(separator: string, values: Iterable): string; //# sourceMappingURL=join.d.ts.map