weasel API - v0.8.0
    Preparing search index...

    Interface NodeProperties

    NodeProperties — the properties trait's registry. Each trait of a node (shape, routing, properties, …) is its own registry; this one answers "what editable properties does this kind expose?" Consumed by weasel-ui's <SelectionPanel>.

    (Supersedes the speculative NodePropertyRows name in the traits spec — the stored value is a schema, not render contributors.)

    interface NodeProperties {
        get(name: string): NodePropertiesEntry | undefined;
        list(): readonly NodePropertiesEntry[];
        register(entry: NodePropertiesEntry): void;
    }
    Index

    Methods

    Methods