Skip to content

Commit

Permalink
Fix ExistingRawSourceMap type (#2507)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Martínez authored and lukastaegert committed Oct 14, 2018
1 parent aa68a8c commit 57cc10a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rollup/types.d.ts
Expand Up @@ -27,13 +27,13 @@ export interface RollupError {
}

export interface ExistingRawSourceMap {
version: string;
version: number;
sources: string[];
names: string[];
sourceRoot?: string;
sourcesContent?: string[];
mappings: string;
file: string;
file?: string;
}

export type RawSourceMap = { mappings: '' } | ExistingRawSourceMap;
Expand Down

0 comments on commit 57cc10a

Please sign in to comment.