From 2035db1d51b0eaae1d840ceba1a70541a77153c3 Mon Sep 17 00:00:00 2001 From: Arthur Ozga Date: Fri, 23 Sep 2016 17:37:11 -0700 Subject: [PATCH] Convert to Doc Comment --- src/services/types.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/services/types.ts b/src/services/types.ts index e8c411cc1c8..35d52532687 100644 --- a/src/services/types.ts +++ b/src/services/types.ts @@ -473,7 +473,11 @@ namespace ts { export interface CompletionInfo { isMemberCompletion: boolean; - isNewIdentifierLocation: boolean; // true when the current location also allows for a new identifier + + /** + * true when the current location also allows for a new identifier + */ + isNewIdentifierLocation: boolean; entries: CompletionEntry[]; }