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

@@ -22,10 +22,10 @@ import {
import React, { useState } from 'react';
import { useTranslation } from 'react-i18next';
import CategorySelect from '@/components/navbar/action/CategorySelect';
import { MangaType } from '@/lib/graphql/generated/graphql.ts';
import { TManga } from '@/typings.ts';
interface IProps {
manga: MangaType;
manga: TManga;
onRefresh: () => any;
refreshing: boolean;
}