From b6fd47dfe0f2839b90ae036ca10ee2b89436dc28 Mon Sep 17 00:00:00 2001 From: Mattias Buelens Date: Tue, 19 Feb 2019 10:51:40 +0100 Subject: [PATCH] Fix type of SourceMap.version (#155) --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index b8e7a3b..c491d82 100644 --- a/index.d.ts +++ b/index.d.ts @@ -21,7 +21,7 @@ export interface DecodedSourceMap { export class SourceMap { constructor(properties: DecodedSourceMap); - version: string; + version: number; file: string; sources: string[]; sourcesContent: string[];