Merge pull request #462 from kazimanzurrashid/master

Updated
This commit is contained in:
Diullei Gomes
2013-04-05 22:02:40 -07:00
+10 -1
View File
@@ -15,10 +15,19 @@ declare var it: {
timeout(ms: number);
};
declare function before(action: () => void): void;
declare function before(action: (done: () => void) => void): void;
declare function aftet(action: () => void): void;
declare function after(action: (done: () => void) => void): void;
declare function beforeEach(action: () => void): void;
declare function beforeEach(action: (done: () => void) => void): void;
declare function afterEach(action: () => void): void;
declare function afterEach(action: (done: () => void) => void): void;
declare function afterEach(action: (done: () => void) => void): void;