Merge pull request #1044 from martinduparc/master

Create jquery.address.d.ts
This commit is contained in:
Diullei Gomes
2013-09-13 22:05:09 -07:00

24
jquery.address/jquery.address.d.ts vendored Normal file
View 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;
}