Make perf count functions public

Previously they were internal
This commit is contained in:
Nathan Shively-Sanders
2019-09-12 13:31:11 -07:00
parent bc7bde3879
commit d94d715cdf
3 changed files with 23 additions and 5 deletions

View File

@@ -3007,11 +3007,11 @@ namespace ts {
/* @internal */ getClassifiableNames(): UnderscoreEscapedMap<true>;
/* @internal */ getNodeCount(): number;
/* @internal */ getIdentifierCount(): number;
/* @internal */ getSymbolCount(): number;
/* @internal */ getTypeCount(): number;
/* @internal */ getRelationCacheSizes(): { assignable: number, identity: number, subtype: number };
getNodeCount(): number;
getIdentifierCount(): number;
getSymbolCount(): number;
getTypeCount(): number;
getRelationCacheSizes(): { assignable: number, identity: number, subtype: number };
/* @internal */ getFileProcessingDiagnostics(): DiagnosticCollection;
/* @internal */ getResolvedTypeReferenceDirectives(): Map<ResolvedTypeReferenceDirective | undefined>;