@@ -1726,18 +1726,15 @@ declare namespace ts {
1726
1726
}
1727
1727
interface InputFiles extends Node {
1728
1728
kind : SyntaxKind . InputFiles ;
1729
- javascriptPath ?: string ;
1730
1729
javascriptText : string ;
1731
1730
javascriptMapPath ?: string ;
1732
1731
javascriptMapText ?: string ;
1733
- declarationPath ?: string ;
1734
1732
declarationText : string ;
1735
1733
declarationMapPath ?: string ;
1736
1734
declarationMapText ?: string ;
1737
1735
}
1738
1736
interface UnparsedSource extends Node {
1739
1737
kind : SyntaxKind . UnparsedSource ;
1740
- fileName ?: string ;
1741
1738
text : string ;
1742
1739
sourceMapPath ?: string ;
1743
1740
sourceMapText ?: string ;
@@ -2217,7 +2214,6 @@ declare namespace ts {
2217
2214
}
2218
2215
interface UniqueESSymbolType extends Type {
2219
2216
symbol : Symbol ;
2220
- escapedName : __String ;
2221
2217
}
2222
2218
interface StringLiteralType extends LiteralType {
2223
2219
value : string ;
@@ -3101,7 +3097,6 @@ declare namespace ts {
3101
3097
scanJsxIdentifier ( ) : SyntaxKind ;
3102
3098
scanJsxAttributeValue ( ) : SyntaxKind ;
3103
3099
reScanJsxToken ( ) : JsxTokenSyntaxKind ;
3104
- reScanLessThanToken ( ) : SyntaxKind ;
3105
3100
scanJsxToken ( ) : JsxTokenSyntaxKind ;
3106
3101
scanJSDocToken ( ) : JsDocSyntaxKind ;
3107
3102
scan ( ) : SyntaxKind ;
@@ -3983,11 +3978,9 @@ declare namespace ts {
3983
3978
function updateCommaList ( node : CommaListExpression , elements : ReadonlyArray < Expression > ) : CommaListExpression ;
3984
3979
function createBundle ( sourceFiles : ReadonlyArray < SourceFile > , prepends ?: ReadonlyArray < UnparsedSource | InputFiles > ) : Bundle ;
3985
3980
function createUnparsedSourceFile ( text : string ) : UnparsedSource ;
3986
- function createUnparsedSourceFile ( inputFile : InputFiles , type : "js" | "dts" ) : UnparsedSource ;
3987
3981
function createUnparsedSourceFile ( text : string , mapPath : string | undefined , map : string | undefined ) : UnparsedSource ;
3988
- function createInputFiles ( javascriptText : string , declarationText : string ) : InputFiles ;
3989
- function createInputFiles ( readFileText : ( path : string ) => string | undefined , javascriptPath : string , javascriptMapPath : string | undefined , declarationPath : string , declarationMapPath : string | undefined ) : InputFiles ;
3990
- function createInputFiles ( javascriptText : string , declarationText : string , javascriptMapPath : string | undefined , javascriptMapText : string | undefined , declarationMapPath : string | undefined , declarationMapText : string | undefined ) : InputFiles ;
3982
+ function createInputFiles ( javascript : string , declaration : string ) : InputFiles ;
3983
+ function createInputFiles ( javascript : string , declaration : string , javascriptMapPath : string | undefined , javascriptMapText : string | undefined , declarationMapPath : string | undefined , declarationMapText : string | undefined ) : InputFiles ;
3991
3984
function updateBundle ( node : Bundle , sourceFiles : ReadonlyArray < SourceFile > , prepends ?: ReadonlyArray < UnparsedSource > ) : Bundle ;
3992
3985
function createImmediatelyInvokedFunctionExpression ( statements : ReadonlyArray < Statement > ) : CallExpression ;
3993
3986
function createImmediatelyInvokedFunctionExpression ( statements : ReadonlyArray < Statement > , param : ParameterDeclaration , paramValue : Expression ) : CallExpression ;
@@ -7939,7 +7932,6 @@ declare namespace ts.server.protocol {
7939
7932
readonly importModuleSpecifierPreference ?: "relative" | "non-relative" ;
7940
7933
readonly allowTextChangesInNewFiles ?: boolean ;
7941
7934
readonly lazyConfiguredProjectsFromExternalProject ?: boolean ;
7942
- readonly providePrefixAndSuffixTextForRename ?: boolean ;
7943
7935
readonly allowRenameOfImportPath ?: boolean ;
7944
7936
readonly providePrefixAndSuffixTextForRename ?: boolean ;
7945
7937
}
0 commit comments