bpms_site/.svn/pristine/52/525fc6af521ac22289e80d965b5862452d3434b3.svn-base
2025-11-02 16:38:49 +03:30

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;