Interface SemanticTokenPropertyOptions<T>

interface SemanticTokenPropertyOptions<T> {
    index?: number;
    modifier?: string | string[];
    node: T;
    property: Properties<T>;
    type: string;
}

Type Parameters

Properties

index?: number
modifier?: string | string[]
node: T
property: Properties<T>
type: string