Added explicit return type

Without explicit return types everywhere, the definition cannot be used in projects that build with --noImplicitAny flag.
This commit is contained in:
Daniel Earwicker
2014-12-16 15:07:18 +00:00
parent 0d595e843d
commit deb620c0de

View File

@@ -6,7 +6,7 @@
/// <reference path="../jquery/jquery.d.ts" />
interface JQueryAddressStatic {
();
(): any;
/**
* Binds any supported event type to a function with support for an optional map of data.
*/