mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-20 21:12:38 +08:00
https://github.com/borisyankov/DefinitelyTyped/issues/1570 jsfl: fixed odd encoding in comments
26 lines
536 B
TypeScript
26 lines
536 B
TypeScript
// 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/
|
|
|
|
/// <reference path="../jquery/jquery.d.ts" />
|
|
|
|
interface JQueryAddressStatic {
|
|
();
|
|
change(callback: any): void;
|
|
value(url: any): void;
|
|
update(): void;
|
|
}
|
|
|
|
interface JQueryAddress {
|
|
(): JQuery;
|
|
}
|
|
|
|
interface JQueryStatic {
|
|
address: JQueryAddressStatic;
|
|
}
|
|
|
|
interface JQuery {
|
|
address: JQueryAddress;
|
|
}
|