1 | // Copyright (c) Microsoft Corporation. All rights reserved.
|
2 | // Licensed under the MIT License. See License.txt in the project root for license information.
|
3 |
|
4 | /**
|
5 | * The format that will be used to join an array of values together for a query parameter value.
|
6 | */
|
7 | export enum QueryCollectionFormat {
|
8 | Csv = ",",
|
9 | Ssv = " ",
|
10 | Tsv = "\t",
|
11 | Pipes = "|",
|
12 | Multi = "Multi",
|
13 | }
|