diff --git a/jquery.address/jquery.address.d.ts b/jquery.address/jquery.address.d.ts new file mode 100644 index 0000000000..a89021583b --- /dev/null +++ b/jquery.address/jquery.address.d.ts @@ -0,0 +1,24 @@ +/// + +// 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; +}