6 lines
197 B
Plaintext
6 lines
197 B
Plaintext
/**
|
|
* Formats an array of values into a string that can be used error messages.
|
|
* ["a", "b", "c"] => "`a`, `b`, `c`"
|
|
*/
|
|
export declare const formatAvailableValues: (values: string[]) => string;
|