File size: 291 Bytes
11acfd9
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import type { ScrapedHomePage } from "./homePage.js";
import type { ScrapedAnimeCategory } from "./animeCategory.js";

export interface ScrapedProducerAnime
  extends Omit<ScrapedAnimeCategory, "genres" | "category">,
    Pick<ScrapedHomePage, "topAiringAnimes"> {
  producerName: string;
}