Interface NextFeature<T>

interface NextFeature<T> {
    feature: T;
    property?: string;
    type?: string;
}

Type Parameters

Properties

feature: T

A feature that could appear during completion.

property?: string

The container property for the new type

type?: string

The type that carries this feature. Only set if we encounter a new type.