bringapp
    Preparing search index...

    Type Alias BringNode

    Represents a node in the BringBlocks component tree, which has a key, component name, props, and optional children.

    type BringNode = {
        attributes: EditorAttributes<unknown>;
        blockName: string;
        children?: BringNode[];
        key: string;
    }
    Index

    Properties

    attributes: EditorAttributes<unknown>

    The node attributes.

    blockName: string
    children?: BringNode[]

    The node children.

    key: string

    The node key.