mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
376 B
TypeScript
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;
|
|
}
|