Interface for media list collection structure

interface MediaListCollection {
    lists: { name: string; entries: MediaListEntry[] }[];
}

Properties

Properties

lists: { name: string; entries: MediaListEntry[] }[]