Update typings

This commit is contained in:
schroda
2023-10-15 16:03:08 +02:00
parent 16ebfcb51f
commit b3a432ed2e
25 changed files with 124 additions and 117 deletions

View File

@@ -8,9 +8,9 @@
import { useTranslation } from 'react-i18next';
import MangaGrid, { IMangaGridProps } from '@/components/MangaGrid';
import { MangaType } from '@/lib/graphql/generated/graphql.ts';
import { TPartialManga } from '@/typings.ts';
function filterManga(mangas: MangaType[]): MangaType[] {
function filterManga(mangas: TPartialManga[]): TPartialManga[] {
return mangas;
}