MangaDexSourceStorage: Record<
    number,
    Map<
        number,
        {
            title: string;
            slug: string;
            mangaDexId: string;
            isFoundViaMangaDex: boolean;
        },
    >,
>

Storage for MangaDex source information indexed by manga position.

export type MangaDexSourceStorage = Record<
number,
Map<
number,
{
title: string;
slug: string;
mangaDexId: string;
isFoundViaMangaDex: boolean;
}
>
>;