File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -2632,7 +2632,7 @@ namespace ts {
2632
2632
export function createUnparsedSourceFile ( text : string ) : UnparsedSource ;
2633
2633
export function createUnparsedSourceFile ( inputFile : InputFiles , type : "js" | "dts" ) : UnparsedSource ;
2634
2634
export function createUnparsedSourceFile ( text : string , mapPath : string | undefined , map : string | undefined ) : UnparsedSource ;
2635
- export function createUnparsedSourceFile ( textOrInputFiles : string | InputFiles , mapPathOrType ?: string | "js" | "dts" , map ?: string ) : UnparsedSource {
2635
+ export function createUnparsedSourceFile ( textOrInputFiles : string | InputFiles , mapPathOrType ?: string , map ?: string ) : UnparsedSource {
2636
2636
const node = < UnparsedSource > createNode ( SyntaxKind . UnparsedSource ) ;
2637
2637
if ( ! isString ( textOrInputFiles ) ) {
2638
2638
Debug . assert ( mapPathOrType === "js" || mapPathOrType === "dts" ) ;
You can’t perform that action at this time.
0 commit comments