mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-15 22:34:55 +08:00
Merge pull request #1044 from martinduparc/master
Create jquery.address.d.ts
This commit is contained in:
24
jquery.address/jquery.address.d.ts
vendored
Normal file
24
jquery.address/jquery.address.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
/// <reference path="../jquery/jquery.d.ts" />
|
||||
|
||||
// Type definitions for jQuery.Address 1.5
|
||||
// Project: https://github.com/asual/jquery-address
|
||||
// Definitions by: Martin Duparc <@martinduparc>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped/
|
||||
|
||||
interface JQueryAddressStatic {
|
||||
();
|
||||
change(callback: any): void;
|
||||
value(url: any): void;
|
||||
}
|
||||
|
||||
interface JQueryAddress {
|
||||
(): JQuery;
|
||||
}
|
||||
|
||||
interface JQueryStatic {
|
||||
address: JQueryAddressStatic;
|
||||
}
|
||||
|
||||
interface JQuery {
|
||||
address: JQueryAddress;
|
||||
}
|
||||
Reference in New Issue
Block a user