Skip to content

Commit

Permalink
Expose isSourceFileFromExternalLibrary (#16112)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajafff authored and mhegazy committed Aug 23, 2017
1 parent 49676c5 commit 8d13314
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2431,7 +2431,7 @@ namespace ts {
getDeclarationDiagnostics(sourceFile?: SourceFile, cancellationToken?: CancellationToken): Diagnostic[];

/**
* Gets a type checker that can be used to semantically analyze source fils in the program.
* Gets a type checker that can be used to semantically analyze source files in the program.
*/
getTypeChecker(): TypeChecker;

Expand All @@ -2451,7 +2451,7 @@ namespace ts {

/* @internal */ getFileProcessingDiagnostics(): DiagnosticCollection;
/* @internal */ getResolvedTypeReferenceDirectives(): Map<ResolvedTypeReferenceDirective>;
/* @internal */ isSourceFileFromExternalLibrary(file: SourceFile): boolean;
isSourceFileFromExternalLibrary(file: SourceFile): boolean;
// For testing purposes only.
/* @internal */ structureIsReused?: StructureIsReused;

Expand Down

0 comments on commit 8d13314

Please sign in to comment.