Make QueryCollectionFormat non-const

This commit is contained in:
Rikki Gibson 2018-06-18 12:11:25 -07:00
Родитель 23e3526594
Коммит 0936bc2172
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -4,7 +4,7 @@
/**
* The format that will be used to join an array of values together for a query parameter value.
*/
export const enum QueryCollectionFormat {
export enum QueryCollectionFormat {
Csv = ",",
Ssv = " ",
Tsv = "\t",