mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
427 B
TypeScript
12 lines
427 B
TypeScript
// Type definitions for http-build-query 0.7
|
|
// Project: https://github.com/vladzadvorny/http-build-query
|
|
// Definitions by: Alex Ungureanu <https://github.com/alexu740>
|
|
// Definitions: https://github.com/DefinitelyTyped/http-build-query
|
|
|
|
export function httpBuildQuery(
|
|
queryData: {[param: string]: string|number},
|
|
numericPrefix?: string,
|
|
argSeparator?: string,
|
|
tempKey?: string
|
|
): string;
|