evalution
    Preparing search index...

    Interface PropDefinition

    interface PropDefinition {
        defaultValue?: PropValue;
        description?: string;
        fullSpan?: SourceSpan;
        interpolatables?: InterpolatableIdentifier[];
        name: string;
        optional: boolean;
        type: PropType;
        valueSpan?: SourceSpan;
    }
    Index

    Properties

    defaultValue?: PropValue

    Default value for this property

    description?: string
    fullSpan?: SourceSpan

    Source span of the full property including name, colon, value, trailing comma/whitespace (for removal)

    interpolatables?: InterpolatableIdentifier[]

    Identifiers available for template interpolation. When set, string editors show the template editor.

    name: string
    optional: boolean
    type: PropType
    valueSpan?: SourceSpan

    Source span of the value expression (for editing existing properties)