1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Remove duplicate Language interface

This commit is contained in:
Bogdan
2023-08-25 04:22:40 +03:00
committed by Mark McDowall
parent 936ef9f461
commit 36c7c79b9e
2 changed files with 3 additions and 6 deletions
+1 -5
View File
@@ -1,4 +1,5 @@
import ModelBase from 'App/ModelBase';
import Language from 'Language/Language';
export type SeriesType = 'anime' | 'daily' | 'standard';
@@ -8,11 +9,6 @@ export interface Image {
remoteUrl: string;
}
export interface Language {
id: number;
name: string;
}
export interface Statistics {
seasonCount: number;
episodeCount: number;