@@ -7929,14 +7929,14 @@ declare namespace ts.server {
79297929 getSnapshot ( ) : IScriptSnapshot ;
79307930 private ensureRealPath ;
79317931 getFormatCodeSettings ( ) : FormatCodeSettings | undefined ;
7932- getPreferences ( ) : UserPreferences | undefined ;
7932+ getPreferences ( ) : protocol . UserPreferences | undefined ;
79337933 attachToProject ( project : Project ) : boolean ;
79347934 isAttached ( project : Project ) : boolean ;
79357935 detachFromProject ( project : Project ) : void ;
79367936 detachAllProjects ( ) : void ;
79377937 getDefaultProject ( ) : Project ;
79387938 registerFileUpdate ( ) : void ;
7939- setOptions ( formatSettings : FormatCodeSettings , preferences : UserPreferences | undefined ) : void ;
7939+ setOptions ( formatSettings : FormatCodeSettings , preferences : protocol . UserPreferences | undefined ) : void ;
79407940 getLatestVersion ( ) : string ;
79417941 saveTo ( fileName : string ) : void ;
79427942 reloadFromFile ( tempFileName ?: NormalizedPath ) : boolean ;
@@ -8201,11 +8201,6 @@ declare namespace ts.server {
82018201 setTypeAcquisition ( newTypeAcquisition : TypeAcquisition ) : void ;
82028202 }
82038203}
8204- declare namespace ts {
8205- interface UserPreferences {
8206- readonly lazyConfiguredProjectsFromExternalProject ?: boolean ;
8207- }
8208- }
82098204declare namespace ts . server {
82108205 const maxProgramSizeForNonTsFiles : number ;
82118206 const ProjectsUpdatedInBackgroundEvent = "projectsUpdatedInBackground" ;
@@ -8319,7 +8314,7 @@ declare namespace ts.server {
83198314 function convertScriptKindName ( scriptKindName : protocol . ScriptKindName ) : ScriptKind . Unknown | ScriptKind . JS | ScriptKind . JSX | ScriptKind . TS | ScriptKind . TSX ;
83208315 interface HostConfiguration {
83218316 formatCodeOptions : FormatCodeSettings ;
8322- preferences : UserPreferences ;
8317+ preferences : protocol . UserPreferences ;
83238318 hostInfo : string ;
83248319 extraFileExtensions ?: FileExtensionInfo [ ] ;
83258320 }
@@ -8438,9 +8433,9 @@ declare namespace ts.server {
84388433 */
84398434 private ensureProjectStructuresUptoDate ;
84408435 getFormatCodeOptions ( file : NormalizedPath ) : FormatCodeSettings ;
8441- getPreferences ( file : NormalizedPath ) : UserPreferences ;
8436+ getPreferences ( file : NormalizedPath ) : protocol . UserPreferences ;
84428437 getHostFormatCodeOptions ( ) : FormatCodeSettings ;
8443- getHostPreferences ( ) : UserPreferences ;
8438+ getHostPreferences ( ) : protocol . UserPreferences ;
84448439 private onSourceFileChanged ;
84458440 private handleDeletedFile ;
84468441 private onConfigChangedForConfiguredProject ;
0 commit comments