mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-25 02:02:52 +00:00
14 lines
439 B
TypeScript
14 lines
439 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
|
|
|
|
declare function httpBuildQuery(
|
|
queryData: { [param: string]: string | number },
|
|
numericPrefix?: string,
|
|
argSeparator?: string,
|
|
tempKey?: string,
|
|
): string;
|
|
|
|
export = httpBuildQuery;
|