Interface ModPropertyValue<T>

Represents the values held by a ModProperty.

interface ModPropertyValue<T> {
    name: string;
    value<T2>(): null | T2;
}

Type Parameters

Hierarchy (view full)

Properties

Methods

Properties

name: string

Gets the name of this instance.

Methods