Files
DefinitelyTyped/types/jquery-urlparam/index.d.ts
2017-03-24 14:27:52 -07:00

11 lines
349 B
TypeScript

// Type definitions for jquery-urlparam
// Project: https://gist.github.com/stpettersens/e1f4478f299b6f4905c1
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="jquery" />
interface JQueryStatic {
urlParam(variable: string): string;
}