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

    Type Alias MarkLike

    Shape accepted by marksEqual, works with both JSONContent marks ({ type: 'bold' }) and ProseMirror Mark objects ({ type: MarkType }).

    type MarkLike = {
        attrs?: Record<string, any> | null;
        type: string | { name: string };
    }
    Index
    attrs?: Record<string, any> | null
    type: string | { name: string }