Temp delete User and Track models

This commit is contained in:
Maciej Pędzich 2023-01-26 15:21:29 +01:00
parent ec15def4ef
commit 53dc5939a2
2 changed files with 0 additions and 22 deletions

View File

@ -1,18 +0,0 @@
import type { User } from './User';
export interface Track {
added_at: string;
album: {
name: string;
url: string;
};
artists: User[];
duration_ms: number;
name: string;
url: string;
date_added: string;
date_added_asterisk: boolean;
date_removed: string | null;
position?: string;
retention?: number;
}

View File

@ -1,4 +0,0 @@
export interface User {
name: string;
url: string;
}