aboutsummaryrefslogtreecommitdiff
path: root/tools/typings/karma.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/typings/karma.d.ts')
-rw-r--r--tools/typings/karma.d.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/typings/karma.d.ts b/tools/typings/karma.d.ts
new file mode 100644
index 0000000..5d2cd42
--- /dev/null
+++ b/tools/typings/karma.d.ts
@@ -0,0 +1,12 @@
+// Use this minimalistic definition file as bluebird dependency
+// generate a lot of errors.
+
+declare module 'karma' {
+ var karma: IKarma;
+ export = karma;
+ interface IKarma {
+ server: {
+ start(options: any, callback: Function): void
+ };
+ }
+}