Merge pull request #8028 from vangorra/meteor-jboulhous-dev

Adding support for Meteor's jboulhous:dev package.
This commit is contained in:
Masahiro Wakame
2016-02-12 00:27:43 +09:00
2 changed files with 13 additions and 0 deletions
@@ -0,0 +1,3 @@
/// <reference path="meteor-jboulhous-dev.d.ts" />
Meteor.isDevelopment;
+10
View File
@@ -0,0 +1,10 @@
// Type definitions for jboulhous:dev
// Project: https://github.com/jboulhous/dev
// Definitions by: Robbie Van Gorkom <https://github.com/vangorra>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../meteor/meteor.d.ts" />
declare module Meteor {
var isDevelopment : boolean;
}