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

    Interface Tree

    YSONTree represents a Tree CRDT structure.

    {
    type: 'Tree',
    root: {
    type: 'doc',
    children: [
    { type: 'p', children: [{ type: 'text', value: 'Hello' }] }
    ]
    }
    }
    interface Tree {
        root: yson.TreeNode;
        type: "Tree";
    }
    Index

    Properties

    Properties

    type: "Tree"