SourceFile.fileWatcher should be optional

This commit is contained in:
Basarat Ali Syed 2015-07-27 17:42:49 +10:00
parent 5bb2e2f584
commit 1251b46eb6

View file

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