Type Alias JoinToStringOptions
JoinToStringOptions : {
limit?: number;
prefix?: string;
separator?: string;
suffix?: string;
truncated?: string;
}
limit?: number;
prefix?: string;
separator?: string;
suffix?: string;
truncated?: string;
}
Type declaration
Optionallimit?: numberThe maximum number of elements to append. If the value is negative, all elements will be appended, which is the default.
Optionalprefix?: stringThe string to use as a prefix for the resulting string.
Optionalseparator?: stringThe string to use as a separator between the elements.
Optionalsuffix?: stringThe string to use as a suffix for the resulting string.
Optionaltruncated?: stringThe string to use as a placeholder for the truncated elements.
Options for
joinToString.