/** * The format that will be used to join an array of values together for a query parameter value. */ export declare enum QueryCollectionFormat { /** * CSV: Each pair of segments joined by a single comma. */ Csv = ",", /** * SSV: Each pair of segments joined by a single space character. */ Ssv = " ", /** * TSV: Each pair of segments joined by a single tab character. */ Tsv = "\t", /** * Pipes: Each pair of segments joined by a single pipe character. */ Pipes = "|", /** * Denotes this is an array of values that should be passed to the server in multiple key/value pairs, e.g. `?queryParam=value1&queryParam=value2` */ Multi = "Multi" } //# sourceMappingURL=queryCollectionFormat.d.ts.map