@resee-movies/utilities - v1.0.2
    Preparing search index...

    Type Alias TableOfContentsObjectSource

    A shape mashup of objects that are created by tools like the Codex or EditorJS block content editors.

    type TableOfContentsObjectSource = {
        attrs?: { level?: number } & Record<string, unknown>;
        content?: TableOfContentsObjectSource[];
        data?: { content?: string; level?: number; text?: string } & Record<
            string,
            unknown,
        >;
        id?: string;
        text?: string;
        type: string;
    }
    Index

    Properties

    attrs?: { level?: number } & Record<string, unknown>
    data?: { content?: string; level?: number; text?: string } & Record<
        string,
        unknown,
    >
    id?: string
    text?: string
    type: string