queryCollectionFormat.ts 375 B

12345678910111213
  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. * The format that will be used to join an array of values together for a query parameter value.
  5. */
  6. export enum QueryCollectionFormat {
  7. Csv = ",",
  8. Ssv = " ",
  9. Tsv = "\t",
  10. Pipes = "|",
  11. Multi = "Multi",
  12. }