mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-24 03:00:39 +08:00
11 lines
285 B
TypeScript
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
|