@@ -22,9 +22,9 @@ namespace ts {
22
22
force ?: boolean ;
23
23
verbose ?: boolean ;
24
24
25
- clean ?: boolean ;
26
- watch ?: boolean ;
27
- help ?: boolean ;
25
+ /* @internal */ clean ?: boolean ;
26
+ /* @internal */ watch ?: boolean ;
27
+ /* @internal */ help ?: boolean ;
28
28
29
29
preserveWatchOutput ?: boolean ;
30
30
listEmittedFiles ?: boolean ;
@@ -340,18 +340,18 @@ namespace ts {
340
340
cleanAllProjects ( ) : ExitStatus ;
341
341
342
342
// TODO:: All the below ones should technically only be in watch mode. but thats for later time
343
- resolveProjectName ( name : string ) : ResolvedConfigFileName ;
344
- getUpToDateStatusOfFile ( configFileName : ResolvedConfigFileName ) : UpToDateStatus ;
345
- getBuildGraph ( configFileNames : ReadonlyArray < string > ) : DependencyGraph ;
343
+ /* @internal */ resolveProjectName ( name : string ) : ResolvedConfigFileName ;
344
+ /* @internal */ getUpToDateStatusOfFile ( configFileName : ResolvedConfigFileName ) : UpToDateStatus ;
345
+ /* @internal */ getBuildGraph ( configFileNames : ReadonlyArray < string > ) : DependencyGraph ;
346
346
347
- invalidateProject ( configFileName : string , reloadLevel ?: ConfigFileProgramReloadLevel ) : void ;
348
- buildInvalidatedProject ( ) : void ;
347
+ /* @internal */ invalidateProject ( configFileName : string , reloadLevel ?: ConfigFileProgramReloadLevel ) : void ;
348
+ /* @internal */ buildInvalidatedProject ( ) : void ;
349
349
350
- resetBuildContext ( opts ?: BuildOptions ) : void ;
350
+ /* @internal */ resetBuildContext ( opts ?: BuildOptions ) : void ;
351
351
}
352
352
353
353
export interface SolutionBuilderWithWatch extends SolutionBuilder {
354
- startWatching ( ) : void ;
354
+ /* @internal */ startWatching ( ) : void ;
355
355
}
356
356
357
357
/**
0 commit comments