@yorkie-js/sdk
    Preparing search index...

    Type Alias ElementNode<A>

    ElementNode represents an element node. It has an attributes and children.

    type ElementNode<A extends Indexable = Indexable> = {
        attributes?: A;
        children: TreeNode[];
        type: TreeNodeType;
    }

    Type Parameters

    Index

    Properties

    attributes?: A
    children: TreeNode[]
    type: TreeNodeType