DefinitelyTyped/types/jquery-urlparam/index.d.ts
Leonard Thieu 1c3565933c :(
2017-06-13 13:00:42 -04:00

12 lines
376 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
// TypeScript Version: 2.3
/// <reference types="jquery" />
interface JQueryStatic {
urlParam(variable: string): string;
}