aboutsummaryrefslogtreecommitdiff
path: root/tools/typings/karma.d.ts
blob: 5d2cd42a8220e67df6fe680133ee457f89a82b40 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
    };
  }
}