fixed broken build

This commit is contained in:
Aleksandr Filatov
2015-06-12 13:43:18 +03:00
parent bfdb58ea52
commit 939fb46dfa
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
/// <reference path="mocha/mocha.d.ts" />
/// <reference path="/mocha/mocha.d.ts" />
/// <reference path="quixote.d.ts" />
function test_createFrame() {
+2 -2
View File
@@ -226,8 +226,8 @@ declare module "quixote" {
class Quixote {
constructor();
createFrame(options, callback(err, frame)): QFrame;
createFrame(options, callback: (err: Error, frame: QFrame) => void): QFrame;
}
export = Quixote;
}
}