mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
405 B
TypeScript
11 lines
405 B
TypeScript
// Type definitions for querystringify 2.0
|
|
// Project: https://github.com/unshiftio/querystringify
|
|
// Definitions by: Ilya Verbitskiy <https://github.com/ilich>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
// TypeScript Version: 2.2
|
|
export function parse(query: string): object;
|
|
|
|
// TypeScript Version: 2.2
|
|
export function stringify(obj: object, prefix?: string | boolean): string;
|