DefinitelyTyped/types/url-params/index.d.ts
Daniel Sogl 8c831011f2 Added type definitions for url-params (#25226)
* Added type definitions for url-params

* add test file

* fix naming

* fix naming
2018-04-24 17:12:55 -07:00

12 lines
503 B
TypeScript

// Type definitions for url-params 1.0
// Project: https://github.com/AtenDesignGroup/url-params
// Definitions by: Daniel Sogl <https://github.com/danielsogl>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export function add(oldUrl: string, param: string, value: any): string;
export function createUrlObject(oldUrl: string): any;
export function remove(oldUrl: string, param: string, value: any): string;
export function set(oldUrl: string, param: string, value: any): string;