amourlinguini
Version:
A JSON-based translation file manager.
12 lines (11 loc) • 370 B
TypeScript
export declare class Utils {
/**
* Joins a string array into a string. Useful for custom Type Mappers.
*
* @param input - The string array (or string) to join.
* @param separator - A separator string to place between items.
*
* @returns The joined string.
*/
static join(input: string | string[], separator: string): string;
}