A reply to a completion items fetch request.

interface ICompletionItemsReply<T> {
    end: number;
    items: T[];
    start: number;
}

Type Parameters

Properties

Properties

end: number

The end index for the substring being replaced by completion.

items: T[]

A list of completion items. default to CompletionHandler.ICompletionItems

start: number

The starting index for the substring being replaced by completion.