Merge pull request #4034 from basarat/patch-1

SourceFile.fileWatcher should be optional
This commit is contained in:
Mohamed Hegazy 2015-07-27 01:05:19 -07:00
Родитель 5bb2e2f584 1251b46eb6
Коммит 8a2ded3cd6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3,7 +3,7 @@
namespace ts {
export interface SourceFile {
fileWatcher: FileWatcher;
fileWatcher?: FileWatcher;
}
/**