From e8b6bd4adaade9c03032230ccb1e925580c20067 Mon Sep 17 00:00:00 2001 From: nycdotnet Date: Thu, 7 Nov 2013 22:03:59 -0500 Subject: [PATCH] Fix for error with TypeScript 0.9.5 "Generic type references must include all type arguments". --- qunit/qunit.d.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/qunit/qunit.d.ts b/qunit/qunit.d.ts index a5ff281a9..ee923c59c 100644 --- a/qunit/qunit.d.ts +++ b/qunit/qunit.d.ts @@ -134,11 +134,17 @@ interface Config { current: Object; reorder: boolean; requireExpects: boolean; - testTimeout: number; - urlConfig: Array; + testTimeout: number; + urlConfig: Array; done: any; } +interface URLConfigItem { + id: string; + label: string; + tooltip: string; +} + interface LifecycleObject { /** * Runs before each test