Convert to Doc Comment

This commit is contained in:
Arthur Ozga 2016-09-23 17:37:11 -07:00
parent 95c3eccbe9
commit 2035db1d51

View File

@ -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[];
}