File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 6
6
declare module "convert-source-map" {
7
7
export interface SourceMapConverter {
8
8
toObject ( ) : any ;
9
- toJSON ( space ?) : string ;
9
+ toJSON ( space ?: any ) : string ;
10
10
toBase64 ( ) : string ;
11
11
toComment ( ) : string ;
12
12
13
- addProperty ( key , value ) : SourceMapConverter ;
14
- setProperty ( key , value ) : SourceMapConverter ;
13
+ addProperty ( key : string , value : any ) : SourceMapConverter ;
14
+ setProperty ( key : string , value : any ) : SourceMapConverter ;
15
15
16
- getProperty ( key ) : any ;
16
+ getProperty ( key : string ) : any ;
17
17
}
18
18
19
- export function removeComments ( src ) : string ;
19
+ export function removeComments ( src : string ) : string ;
20
20
export var commentRegex : RegExp ;
21
21
22
- export function fromObject ( obj ) : SourceMapConverter ;
22
+ export function fromObject ( obj : any ) : SourceMapConverter ;
23
23
export function fromJSON ( json : string ) : SourceMapConverter ;
24
24
export function fromBase64 ( base64 : string ) : SourceMapConverter ;
25
25
export function fromComment ( comment : string ) : SourceMapConverter ;
26
26
export function fromSource ( source : string ) : SourceMapConverter ;
27
- }
27
+ }
You can’t perform that action at this time.
0 commit comments