IMange export the ReleaseStatusFromNumber function

This commit is contained in:
glax 2024-10-20 02:09:03 +02:00
parent 004f96194f
commit 442b2ce0cc

View File

@ -29,7 +29,7 @@ export default interface IManga{
"mangaConnector": IMangaConnector "mangaConnector": IMangaConnector
} }
function ReleaseStatusFromNumber(n: number): string { export function ReleaseStatusFromNumber(n: number): string {
switch(n) { switch(n) {
case 0: return "Ongoing"; case 0: return "Ongoing";
case 1: return "Completed"; case 1: return "Completed";