Adding support for Meteor's jboulhous:dev package.

This commit is contained in:
vangorra
2016-02-09 13:57:29 -08:00
parent 717a5fdb07
commit 6a1ecc63d6
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;
}