1
0
mirror of https://github.com/oven-sh/setup-bun.git synced 2025-04-12 00:00:10 +08:00
2022-07-12 09:00:22 +02:00

11 lines
285 B
TypeScript

/**
* The format that will be used to join an array of values together for a query parameter value.
*/
export declare enum QueryCollectionFormat {
Csv = ",",
Ssv = " ",
Tsv = "\t",
Pipes = "|",
Multi = "Multi"
}
//# sourceMappingURL=queryCollectionFormat.d.ts.map