Merge pull request #7350 from basarat/patch-1

fix(build) `TypingResolutionHost` interface is used by exported function `discoverTypings`
This commit is contained in:
Mohamed Hegazy
2016-03-02 16:39:56 -08:00

View File

@@ -6,7 +6,7 @@
/* @internal */
namespace ts.JsTyping {
interface TypingResolutionHost {
export interface TypingResolutionHost {
directoryExists: (path: string) => boolean;
fileExists: (fileName: string) => boolean;
readFile: (path: string, encoding?: string) => string;