From 02dd068641b3c9a0c8f4d54944812f3ac7c2d231 Mon Sep 17 00:00:00 2001 From: Amila Welihinda Date: Wed, 8 Jun 2022 11:20:08 -0700 Subject: [PATCH] fix(types): fix sourceContent type to match spec --- source-map.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source-map.d.ts b/source-map.d.ts index ca8781ee..758c255f 100644 --- a/source-map.d.ts +++ b/source-map.d.ts @@ -17,7 +17,7 @@ export interface RawSourceMap { sources: string[]; names: string[]; sourceRoot?: string; - sourcesContent?: string[]; + sourcesContent?: Array; mappings: string; file: string; }