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

    Type Alias JSONContent

    Loosely describes a JSON representation of a Prosemirror document or node

    type JSONContent = {
        attrs?: Record<string, any>;
        content?: JSONContent[];
        marks?: { attrs?: Record<string, any>; type: string; [key: string]: any }[];
        text?: string;
        type?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    attrs?: Record<string, any>
    content?: JSONContent[]
    marks?: { attrs?: Record<string, any>; type: string; [key: string]: any }[]
    text?: string
    type?: string