Files
DefinitelyTyped/jquery.address/jquery.address.d.ts
Martin D. 4e51831924 Update jquery.address.d.ts
Added update method
2013-11-19 19:43:29 -05:00

26 lines
536 B
TypeScript

/// <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;
update(): void;
}
interface JQueryAddress {
(): JQuery;
}
interface JQueryStatic {
address: JQueryAddressStatic;
}
interface JQuery {
address: JQueryAddress;
}