source-map-support: bump version and fix node dependency

This commit is contained in:
Guilherme Bernal
2015-05-04 17:45:06 -03:00
parent f3244190e2
commit 0018f1f6c6
+4 -2
View File
@@ -1,15 +1,17 @@
// Type definitions for source-map-support 0.2.6
// Type definitions for source-map-support 0.2.10
// Project: https://github.com/evanw/source-map-support
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare module 'source-map-support' {
/**
* Output of retrieveSourceMap().
*/
export interface UrlAndMap {
url: string;
map: any; // string or Buffer
map: string|Buffer;
}
/**