queryCollectionFormat.d.ts 285 B

1234567891011
  1. /**
  2. * The format that will be used to join an array of values together for a query parameter value.
  3. */
  4. export declare enum QueryCollectionFormat {
  5. Csv = ",",
  6. Ssv = " ",
  7. Tsv = "\t",
  8. Pipes = "|",
  9. Multi = "Multi"
  10. }
  11. //# sourceMappingURL=queryCollectionFormat.d.ts.map