Fix for error with TypeScript 0.9.5

"Generic type references must include all type arguments".
This commit is contained in:
nycdotnet
2013-11-07 22:03:59 -05:00
parent 4149755746
commit e8b6bd4ada
+8 -2
View File
@@ -134,11 +134,17 @@ interface Config {
current: Object;
reorder: boolean;
requireExpects: boolean;
testTimeout: number;
urlConfig: Array;
testTimeout: number;
urlConfig: Array<URLConfigItem>;
done: any;
}
interface URLConfigItem {
id: string;
label: string;
tooltip: string;
}
interface LifecycleObject {
/**
* Runs before each test