ms-rest-js/lib/queryCollectionFormat.ts

14 строки
375 B
TypeScript
Исходник Обычный вид История

2018-05-24 21:49:28 +03:00
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
/**
* The format that will be used to join an array of values together for a query parameter value.
*/
2018-06-18 22:11:25 +03:00
export enum QueryCollectionFormat {
2018-06-15 01:00:44 +03:00
Csv = ",",
Ssv = " ",
Tsv = "\t",
Pipes = "|",
Multi = "Multi",
}