DefinitelyTyped/jquery-urlparam/jquery-urlparam.d.ts

11 lines
363 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 path="../jquery/jquery.d.ts" />
interface JQueryStatic {
urlParam(variable: string): string;
}