Import types only

This commit is contained in:
Isra 2023-09-15 15:11:27 -05:00
parent a0637cc046
commit 2aa7428711
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { load } from 'cheerio';
import { ScrapeContext } from '@/utils/context';
import type { ScrapeContext } from '@/utils/context';
import { embedProviders, kissasianBase } from './common';

View File

@ -1,4 +1,4 @@
import { CheerioAPI } from 'cheerio';
import type { CheerioAPI } from 'cheerio';
export async function getEpisodes(dramaPage: CheerioAPI) {
const episodesEl = dramaPage('tbody tr:not(:first-child)');