@umbraco-cms/backoffice
    Preparing search index...

    Type Alias TextType<TMarkType>

    A node type is either a JSON representation of a text node or a Prosemirror text node instance

    type TextType<TMarkType extends MarkType = MarkType> = {
        marks: TMarkType[];
        text: string;
        type: "text";
    }

    Type Parameters

    Index

    Properties

    Properties

    marks: TMarkType[]
    text: string
    type: "text"