queryCollectionFormat.js 649 B

1234567891011121314
  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 var QueryCollectionFormat;
  7. (function (QueryCollectionFormat) {
  8. QueryCollectionFormat["Csv"] = ",";
  9. QueryCollectionFormat["Ssv"] = " ";
  10. QueryCollectionFormat["Tsv"] = "\t";
  11. QueryCollectionFormat["Pipes"] = "|";
  12. QueryCollectionFormat["Multi"] = "Multi";
  13. })(QueryCollectionFormat || (QueryCollectionFormat = {}));
  14. //# sourceMappingURL=queryCollectionFormat.js.map