Merge pull request #7578 from cspotcode/patch-2

autobahn.d.ts: Remove dependence on jquery.d.ts
This commit is contained in:
Masahiro Wakame
2016-01-22 18:12:23 +09:00

View File

@@ -4,7 +4,6 @@
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../when/when.d.ts" />
/// <reference path="../jquery/jquery.d.ts" />
declare module autobahn {
@@ -194,7 +193,7 @@ declare module autobahn {
type: string;
}
type DeferFactory = () => JQueryPromise<any>;
type DeferFactory = () => When.Promise<any>;
type OnChallengeHandler = (session: Session, method: string, extra: any) => When.Promise<string>;