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

    Interface TextNode

    YSONTextNode represents a single character in a Text CRDT.

    { val: 'H', attrs: { bold: true } }
    
    interface TextNode {
        attrs?: Record<string, any>;
        val: string;
    }
    Index

    Properties

    Properties

    attrs?: Record<string, any>

    Optional attributes (e.g., formatting)

    val: string

    The character value