diff options
author | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-03 17:17:48 -0800 |
---|---|---|
committer | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-03 17:17:48 -0800 |
commit | 5310ac7d8eb1838a6297117bc7f9fca70291f46a (patch) | |
tree | 28f54b184cb85f04e6d6720dd03258f3728fedde /tools/typings/karma.d.ts |
initial commit
Diffstat (limited to 'tools/typings/karma.d.ts')
-rw-r--r-- | tools/typings/karma.d.ts | 12 |
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 + }; + } +} |