From 12d960ecdf1c72f4161492190c30c312714b1377 Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Fri, 22 Dec 2017 10:09:59 +0200 Subject: [PATCH] update source map interface --- index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index 0dc3c54..69d479a 100644 --- a/index.d.ts +++ b/index.d.ts @@ -11,11 +11,12 @@ export interface SourceMapOptions { } export interface SourceMap { + version: string; file: string; sources: string[]; - sourcesContent: string; + sourcesContent: string[]; names: string[]; - mappings: string[]; + mappings: string; toString(): string; toUrl(): string;