Front: Fix API calls with JWT Token

This commit is contained in:
Arthi-chaud
2022-11-13 15:48:52 +00:00
parent 4ecd556918
commit 889d07cfe5
22 changed files with 368 additions and 248 deletions
+5 -3
View File
@@ -2,9 +2,11 @@ import Metrics from "./Metrics";
import Model from "./Model";
interface Song extends Model {
title: string;
description: string;
album: string;
name: string
artistId: number | null
albumId: number | null
genreId: number | null;
cover: string;
metrics: Metrics;
}