Visualization
    Preparing search index...

    Interface ModPropertyValue<T>

    Represents the values held by a ModProperty.

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

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    name: string

    Gets the name of this instance.

    Methods