Interface Property<T>

Base data of a custom property.

interface Property<T> {
    name: string;
    type: T;
    value: PropertyValueType<T>;
}

Type Parameters

Properties

Properties

name: string

The name of the property.

type: T

The type of the property.

The value of the property.

Generated using TypeDoc