Orca Note Plugin API Documentation
    Preparing search index...

    Interface BlockProperty

    Represents a named property attached to a block. Properties can store metadata and structured data associated with blocks.

    interface BlockProperty {
        name: string;
        pos?: number;
        type: number;
        typeArgs?: any;
        value?: any;
    }
    Index

    Properties

    name: string

    Name of the property

    pos?: number

    Optional position for visual ordering of properties

    type: number

    Type code for the property (determines how the value is interpreted)

    typeArgs?: any

    Optional arguments specific to the property type

    value?: any

    The property value