added definitions for source-map-support

This commit is contained in:
Bart van der Schoor
2014-04-01 00:36:01 +02:00
parent f354504a25
commit 17bcd6dda4
2 changed files with 13 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
/// <reference path="source-map-support.d.ts" />
import sms = require('source-map-support');
sms.install();
+8
View File
@@ -0,0 +1,8 @@
// Type definitions for source-map-support 0.2.5
// Project: https://github.com/evanw/source-map-support
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module 'source-map-support' {
export function install();
}