mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-19 10:41:56 -05:00
Merge pull request #32076 from stristr/master
Make close() in interface Watch<T> public
This commit is contained in:
@@ -608,7 +608,6 @@ namespace ts {
|
||||
/*@internal*/
|
||||
getCurrentProgram(): T;
|
||||
/** Closes the watch */
|
||||
/*@internal*/
|
||||
close(): void;
|
||||
}
|
||||
|
||||
|
||||
@@ -4553,6 +4553,8 @@ declare namespace ts {
|
||||
interface Watch<T> {
|
||||
/** Synchronize with host and get updated program */
|
||||
getProgram(): T;
|
||||
/** Closes the watch */
|
||||
close(): void;
|
||||
}
|
||||
/**
|
||||
* Creates the watch what generates program using the config file
|
||||
|
||||
@@ -4553,6 +4553,8 @@ declare namespace ts {
|
||||
interface Watch<T> {
|
||||
/** Synchronize with host and get updated program */
|
||||
getProgram(): T;
|
||||
/** Closes the watch */
|
||||
close(): void;
|
||||
}
|
||||
/**
|
||||
* Creates the watch what generates program using the config file
|
||||
|
||||
Reference in New Issue
Block a user