Merge pull request #4265 from lbguilherme/patch-1

source-map-support: bump version and fix node dependency
This commit is contained in:
Masahiro Wakame
2015-05-06 23:31:23 +09:00

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;
}
/**